diff --git a/.gitmodules b/.gitmodules index 367ab20..6208501 100644 --- a/.gitmodules +++ b/.gitmodules @@ -13,9 +13,6 @@ [submodule "fstools"] path = fstools url = https://git.mount-mockery.de/pylib/fstools.git -[submodule "reqif"] - path = reqif - url = https://git.mount-mockery.de/pylib/reqif.git [submodule "unittest"] path = unittest url = https://git.mount-mockery.de/pylib/unittest.git diff --git a/__make.d__/test.mk b/__make.d__/test.mk index ac3027d..44b40f1 100644 --- a/__make.d__/test.mk +++ b/__make.d__/test.mk @@ -2,32 +2,39 @@ OUTDIR=testresults TEXFILE=$(OUTDIR)/testrun.tex PDFFILE=$(OUTDIR)/testrun.pdf TEXFILE_FULL=$(OUTDIR)/testrun_full.tex -PDFFILE_FULL=$(OUTDIR)/testrun_full.pdf -smoke: test_smoke pdf view pdf_full clean +release: + cp -v $(PDFFILE) ../smart_brain/_testresults_ + cp -v $(OUTDIR)/testrun.json ../smart_brain/_testresults_ + cp -v $(OUTDIR)/coverage.xml ../smart_brain/_testresults_ + +single: test_single pdf view clean @echo FINISHED... -short: test_short pdf view pdf_full clean +smoke: test_smoke pdf view clean @echo FINISHED... -full: test_full pdf view pdf_full clean +short: test_short pdf view clean @echo FINISHED... +full: test_full pdf view clean + @echo FINISHED... + +test_single: + venv/bin/python smart_brain_test.py single + test_smoke: - venv/bin/python smart_brain_test.py test.all.smoke + venv/bin/python smart_brain_test.py smoke test_short: - venv/bin/python smart_brain_test.py test.all.short + venv/bin/python smart_brain_test.py short test_full: - venv/bin/python smart_brain_test.py test.all.full + venv/bin/python smart_brain_test.py full pdf: @latexmk -pdf -quiet -pdflatex="pdflatex -interaction=nonstopmode" -output-directory=$(OUTDIR) -use-make $(TEXFILE) > /dev/null -pdf_full: - @latexmk -pdf -quiet -pdflatex="pdflatex -interaction=nonstopmode" -output-directory=$(OUTDIR) -use-make $(TEXFILE_FULL) > /dev/null - view: @open $(PDFFILE) @@ -40,6 +47,3 @@ localclean: @find . -name *~ -type f | xargs rm -f @find . -name __pycache__ -type d | xargs rm -rf -#%: -# venv/bin/python smart_brain_test.py $@ -# $(MAKE) pdf_full view_full pdf clean diff --git a/devdi b/devdi index 4fa0081..f0b994e 160000 --- a/devdi +++ b/devdi @@ -1 +1 @@ -Subproject commit 4fa00811c6d243888828e67b0952b5b06f46a3d7 +Subproject commit f0b994ef9c3a0526c4b699c491ccb478bc3847d0 diff --git a/devices/__init__.py b/devices/__init__.py index 2bb52af..d3547c6 100644 --- a/devices/__init__.py +++ b/devices/__init__.py @@ -56,6 +56,23 @@ def remote(mqtt_client, topic): def my_ambient(mqtt_client, topic): logger.warning("Device type my_ambient is not yet implemented. Topic %s will not be supported", topic) return None + + +def videv_pure_switch(mqtt_client, topic): + logger.warning("Device type videv_pure_switch is not yet implemented. Topic %s will not be supported", topic) + return None + + +def videv_multistate(mqtt_client, topic): + logger.warning("Device type videv_multistate is not yet implemented. Topic %s will not be supported", topic) + return None + + +def videv_audio_player(mqtt_client, topic): + logger.warning("Device type videv_audio_player is not yet implemented. Topic %s will not be supported", topic) + return None + + # TODO: Not yet implemented devices ################################### @@ -148,14 +165,25 @@ class livarno_sw_br_ct(tradfri_light): class videv_sw(videv_light): def __init__(self, mqtt_client, topic): - super().__init__(mqtt_client, topic, True, False, False) + super().__init__(mqtt_client, topic, True, False, False, False) class videv_sw_br(videv_light): def __init__(self, mqtt_client, topic): - super().__init__(mqtt_client, topic, True, True, False) + super().__init__(mqtt_client, topic, True, True, False, False) class videv_sw_br_ct(videv_light): def __init__(self, mqtt_client, topic): - super().__init__(mqtt_client, topic, True, True, True) + super().__init__(mqtt_client, topic, True, True, True, False) + + +class videv_sw_tm(videv_light): + def __init__(self, mqtt_client, topic): + super().__init__(mqtt_client, topic, True, True, True, True) + + +class videv_sw_mo(videv_light): + # TODO: Motion functions not included yet + def __init__(self, mqtt_client, topic): + super().__init__(mqtt_client, topic, True, True, True, True) diff --git a/fstools b/fstools index c10e879..22f5af3 160000 --- a/fstools +++ b/fstools @@ -1 +1 @@ -Subproject commit c10e8792abb05671dab6de51cdadda3bf8ead50f +Subproject commit 22f5af3bca4e4125ee92d30f7797590116188fab diff --git a/geo b/geo index 11166bb..edc3c99 160000 --- a/geo +++ b/geo @@ -1 +1 @@ -Subproject commit 11166bb27ad2335f7812fcb88c788397f5106751 +Subproject commit edc3c9975ec723abf81e9ba52b4012f4674f3ac5 diff --git a/reqif b/reqif deleted file mode 160000 index c0e8533..0000000 --- a/reqif +++ /dev/null @@ -1 +0,0 @@ -Subproject commit c0e8533af5eeb4dccb6cd8742c936eb456ce6466 diff --git a/smart_brain_test.py b/smart_brain_test.py index 9b20896..c15eccc 100644 --- a/smart_brain_test.py +++ b/smart_brain_test.py @@ -1,29 +1,40 @@ import argparse import config +from devdi.topic import STOP_EXECUTION_TOPIC +import json import mqtt from simulation.rooms import house import report +import unittest import os +import time import tests.help # TODO: Extend tests in simulation +# - Add cross room functions like follow input_1 -> floor light # - Compare with nodered capabilities -# - Add furthet heating checks (set to default, ...) -# - Test???: Check of warning messages for battery and overtemperature +# - cleanup (e.g. bedlight dirk, christmas star, ...) +# - circ pump on -> flash +# - Longpress -> flash +# - All off +# - circulation pump -> timer +# - stairway on -> timer +# - stairway motion -> feedback in videv / switch on light # - Switching button functions (gfw_dirk, ffe.sleep) # - Brightness button functions (gfw.dirk, ffe.sleep) -# - Remote actions after amplifier on +# - Remote control actions after amplifier on # - Heating functionality (extended: mode switch off by other function, timer) -# - Circulation pump (Extend Timer) -# - Stairways (Extend Motion sensor and Timer) +# - Inspect coverage result for important checks if __name__ == "__main__": # Command line arguments tcel = { "single": report.TCEL_SINGLE, + "smoke": report.TCEL_SMOKE, + "short": report.TCEL_SHORT, "full": report.TCEL_FULL } parser = argparse.ArgumentParser() @@ -46,8 +57,23 @@ if __name__ == "__main__": ts = tests.help.testSession(mc, tcel=tcel.get(args.level)) # Add and run tests tests.add_all_testcases(ts, mc, h) - # Export testresults + BASEPATH = os.path.abspath(os.path.join(os.path.dirname(__file__))) + + # + # Add coverage data + # + # Stop smart_brain execution + mc.send(STOP_EXECUTION_TOPIC, json.dumps(True)) + time.sleep(2) # give smart_brain time to create coverage xml file + # + coverage_file = os.path.join(BASEPATH, "testresults", "coverage.xml") + if os.path.exists(coverage_file): + ts.full_test_data[unittest.jsonlog.MAIN_KEY_COVERAGE_INFO] = unittest.run.coverage_info(coverage_file, None) + + # + # Export testresults + # ts.export_results_to( template_file=os.path.join(BASEPATH, 'unittest', 'templates', 'unittest.tex'), path=os.path.join(BASEPATH, "testresults") diff --git a/task b/task index af35e83..bb6f7ea 160000 --- a/task +++ b/task @@ -1 +1 @@ -Subproject commit af35e83d1f07fd4cb9070bdb77cf1f3bdda3a463 +Subproject commit bb6f7ea26f24481cba7218256e47572fa84db478 diff --git a/testresults/testrun.json b/testresults/testrun.json deleted file mode 100644 index 3476ba3..0000000 --- a/testresults/testrun.json +++ /dev/null @@ -1,133368 +0,0 @@ -{ - "system_information": { - "Architecture": "64bit", - "Machine": "x86_64", - "Hostname": "erle", - "Distribution": "Debian GNU/Linux 13 (trixie)", - "System": "Linux", - "Kernel": "6.15.1-surface-2 (#2 SMP PREEMPT_DYNAMIC Tue Jun 24 21:02:07 UTC 2025)", - "Username": "dirk", - "Path": "/home/dirk/work/smarthome_collection/smart_brain_test" - }, - "testobject_information": { - "Name": "smart_brain", - "Version": "1.3.0", - "Git URL": "https://git.mount-mockery.de/smarthome/smart_brain.git", - "Git REF": "507b67d91a5efca44fc52f3ccee96215f231ffd5" - }, - "unittest_information": {}, - "specification": {}, - "lost_souls": { - "item_list": [], - "testcase_list": [ - "Clean-Up", - "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": 52.89364171028137, - "number_of_possibly_failed_tests": 0, - "number_of_successfull_tests": 108, - "number_of_failed_tests": 0, - "testcase_execution_level": 90, - "testcase_names": { - "0": "Single Test", - "10": "Smoke Test (Minumum subset)", - "50": "Short Test (Subset)", - "90": "Full Test (all defined tests)" - }, - "name": "Default Testsession name", - "number_of_tests": 108, - "interpreter": "python3.13.5", - "testcases": { - "Clean-Up": { - "name": "__tLogger__", - "msg": "Clean-Up", - "args": null, - "levelname": "DEBUG", - "levelno": 10, - "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": 1755888838.4266763, - "msecs": 426.0, - "relativeCreated": 301.485502, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Clean-Up", - "asctime": "2025-08-22 20:53:58,426", - "moduleLogger": [ - { - "name": "smart_brain.mqtt", - "msg": "Adding callback for topic %s", - "args": [ - "__info__" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 70, - "funcName": "add_callback", - "created": 1755888838.4254863, - "msecs": 425.0, - "relativeCreated": 300.295529, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Adding callback for topic __info__", - "asctime": "2025-08-22 20:53:58,425" - }, - { - "name": "smart_brain.mqtt.__info__", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "__info__", - "null" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/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.4263825, - "msecs": 426.0, - "relativeCreated": 301.191701, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Sending message with topic __info__ and payload null", - "asctime": "2025-08-22 20:53:58,426" - } - ], - "testcaseLogger": [ - { - "name": "__tLogger__", - "msg": "Collecting precondition logs...", - "args": [], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/tests/rooms.py", - "filename": "rooms.py", - "module": "rooms", - "exc_text": null, - "stack_info": null, - "lineno": 74, - "funcName": "precond_test", - "created": 1755888838.9272423, - "msecs": 927.0, - "relativeCreated": 802.051455, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Collecting precondition logs...", - "asctime": "2025-08-22 20:53:58,927", - "moduleLogger": [ - { - "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": [ - "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": 1755888838.430741, - "msecs": 430.0, - "relativeCreated": 305.550293, - "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:53:58,430" - }, - { - "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": 1755888838.4310756, - "msecs": 431.0, - "relativeCreated": 305.884936, - "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:53:58,431" - }, - { - "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": 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", - "levelno": 10, - "pathname": "/home/dirk/work/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.4353836, - "msecs": 435.0, - "relativeCreated": 310.192788, - "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:53:58,435" - }, - { - "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": 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", - "levelno": 10, - "pathname": "/home/dirk/work/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.4376276, - "msecs": 437.0, - "relativeCreated": 312.436934, - "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:53:58,437" - }, - { - "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": 1755888838.437867, - "msecs": 437.0, - "relativeCreated": 312.676319, - "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:53:58,437" - }, - { - "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": 1755888838.4380624, - "msecs": 438.0, - "relativeCreated": 312.871479, - "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:53:58,438" - }, - { - "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": 1755888838.43826, - "msecs": 438.0, - "relativeCreated": 313.0693, - "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:53:58,438" - }, - { - "name": "smart_brain.mqtt.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "__info__", - "b'null'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/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.4385564, - "msecs": 438.0, - "relativeCreated": 313.365661, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Received message with topic __info__ and payload b'null'", - "asctime": "2025-08-22 20:53:58,438" - }, - { - "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": 1755888838.438768, - "msecs": 438.0, - "relativeCreated": 313.577099, - "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:53:58,438" - }, - { - "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": 1755888838.4690137, - "msecs": 469.0, - "relativeCreated": 343.82304, - "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: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", - "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": 1755888838.4700832, - "msecs": 470.0, - "relativeCreated": 344.892666, - "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:58,470" - }, - { - "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": 1755888838.470301, - "msecs": 470.0, - "relativeCreated": 345.110283, - "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:58,470" - }, - { - "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": 1755888838.4705055, - "msecs": 470.0, - "relativeCreated": 345.314671, - "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:58,470" - }, - { - "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": 1755888838.4707248, - "msecs": 470.0, - "relativeCreated": 345.534054, - "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:58,470" - }, - { - "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": 1755888838.4709327, - "msecs": 470.0, - "relativeCreated": 345.741888, - "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:58,470" - }, - { - "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": 1755888838.4711342, - "msecs": 471.0, - "relativeCreated": 345.943392, - "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:58,471" - }, - { - "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": 1755888838.4713397, - "msecs": 471.0, - "relativeCreated": 346.149107, - "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:58,471" - }, - { - "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": 1755888838.4715536, - "msecs": 471.0, - "relativeCreated": 346.362854, - "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: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", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/stw/stairway/main_light/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/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.4724274, - "msecs": 472.0, - "relativeCreated": 347.236441, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Received message with topic videv/stw/stairway/main_light/state and payload b'false'", - "asctime": "2025-08-22 20:53:58,472" - }, - { - "name": "smart_brain.mqtt.__info__", - "msg": "Received message with topic %s and payload %s", - "args": [ - "__info__", - "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\"}}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/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.47265, - "msecs": 472.0, - "relativeCreated": 347.459343, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "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-22 20:53:58,472" - } - ], - "time_consumption": 0.454592227935791 - } - ], - "time_consumption": 0.5005660057067871, - "time_start": "2025-08-22 20:53:58,426", - "time_finished": "2025-08-22 20:53:58,927" - }, - "ViDevLight.state (ffe.livingroom.main_light) -> Shelly.relay/0 (ffe.livingroom.main_light)": { - "name": "__tLogger__", - "msg": "ViDevLight.state (ffe.livingroom.main_light) -> Shelly.relay/0 (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": 1755888838.9276295, - "msecs": 927.0, - "relativeCreated": 802.438812, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "ViDevLight.state (ffe.livingroom.main_light) -> Shelly.relay/0 (ffe.livingroom.main_light)", - "asctime": "2025-08-22 20:53:58,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": 1755888839.028215, - "msecs": 28.0, - "relativeCreated": 903.02415, - "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,028", - "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": 1755888838.927831, - "msecs": 927.0, - "relativeCreated": 802.640195, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Sending message with topic videv/ffe/livingroom/main_light/state/set and payload false", - "asctime": "2025-08-22 20:53:58,927" - } - ], - "time_consumption": 0.10038399696350098 - }, - { - "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.0285769, - "msecs": 28.0, - "relativeCreated": 903.385939, - "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,028", - "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.0284631, - "msecs": 28.0, - "relativeCreated": 903.272444, - "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,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": 1755888839.0285244, - "msecs": 28.0, - "relativeCreated": 903.333468, - "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,028" - } - ], - "time_consumption": 5.245208740234375e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "ViDevLight.state (ffe.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": 1755888839.1291173, - "msecs": 129.0, - "relativeCreated": 1003.926317, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "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", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/ffe/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": 1755888839.02871, - "msecs": 28.0, - "relativeCreated": 903.519074, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Sending message with topic videv/ffe/livingroom/main_light/state/set and payload true", - "asctime": "2025-08-22 20:53:59,028" - }, - { - "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'on'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/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.0307128, - "msecs": 30.0, - "relativeCreated": 905.522159, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Received message with topic shellies/ffe/livingroom/main_light/relay/0/command and payload b'on'", - "asctime": "2025-08-22 20:53:59,030" - }, - { - "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": 1755888839.0309887, - "msecs": 30.0, - "relativeCreated": 905.797936, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "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:53:59,030" - }, - { - "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": 1755888839.031252, - "msecs": 31.0, - "relativeCreated": 906.061215, - "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\": 127.0, \"color_temp\": 352.0}", - "asctime": "2025-08-22 20:53:59,031" - }, - { - "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": 1755888839.0317817, - "msecs": 31.0, - "relativeCreated": 906.590796, - "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:53:59,031" - }, - { - "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": 1755888839.032049, - "msecs": 32.0, - "relativeCreated": 906.858218, - "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:53:59,032" - }, - { - "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.0744596, - "msecs": 74.0, - "relativeCreated": 949.268756, - "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,074" - }, - { - "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.074792, - "msecs": 74.0, - "relativeCreated": 949.601152, - "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,074" - }, - { - "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.075094, - "msecs": 75.0, - "relativeCreated": 949.903307, - "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,075" - }, - { - "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.075256, - "msecs": 75.0, - "relativeCreated": 950.0653, - "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,075" - }, - { - "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.0755556, - "msecs": 75.0, - "relativeCreated": 950.364852, - "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,075" - }, - { - "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.0757754, - "msecs": 75.0, - "relativeCreated": 950.584669, - "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,075" - }, - { - "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.0760028, - "msecs": 76.0, - "relativeCreated": 950.812134, - "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,076" - }, - { - "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.0761442, - "msecs": 76.0, - "relativeCreated": 950.953408, - "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,076" - }, - { - "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.0764315, - "msecs": 76.0, - "relativeCreated": 951.240943, - "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,076" - }, - { - "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.0766244, - "msecs": 76.0, - "relativeCreated": 951.43356, - "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,076" - }, - { - "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.0768511, - "msecs": 76.0, - "relativeCreated": 951.660419, - "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,076" - }, - { - "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.0769808, - "msecs": 76.0, - "relativeCreated": 951.789919, - "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,076" - }, - { - "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": 1755888839.0772412, - "msecs": 77.0, - "relativeCreated": 952.050425, - "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:53:59,077" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.main_light.brightness", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/main_light/brightness", - "b'50'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/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.0775108, - "msecs": 77.0, - "relativeCreated": 952.320065, - "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'50'", - "asctime": "2025-08-22 20:53:59,077" - }, - { - "name": "smart_brain.mqtt.videv.ffe.livingroom.main_light.color_temp", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/ffe/livingroom/main_light/color_temp", - "b'5'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/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.07772, - "msecs": 77.0, - "relativeCreated": 952.529165, - "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'5'", - "asctime": "2025-08-22 20:53:59,077" - }, - { - "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.0779185, - "msecs": 77.0, - "relativeCreated": 952.727786, - "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,077" - }, - { - "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.0780988, - "msecs": 78.0, - "relativeCreated": 952.907893, - "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,078" - }, - { - "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.078267, - "msecs": 78.0, - "relativeCreated": 953.076283, - "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,078" - }, - { - "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.0784354, - "msecs": 78.0, - "relativeCreated": 953.244521, - "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,078" - }, - { - "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.0786045, - "msecs": 78.0, - "relativeCreated": 953.41373, - "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,078" - }, - { - "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.078792, - "msecs": 78.0, - "relativeCreated": 953.601463, - "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,078" - }, - { - "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.1188796, - "msecs": 118.0, - "relativeCreated": 993.688633, - "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,118" - } - ], - "time_consumption": 0.010237693786621094 - }, - { - "name": "__tLogger__", - "msg": "Value for Shelly.relay/0 (ffe.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": 1755888839.1293669, - "msecs": 129.0, - "relativeCreated": 1004.176053, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "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": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for Shelly.relay/0 (ffe.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": 1755888839.1292834, - "msecs": 129.0, - "relativeCreated": 1004.09247, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "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 Shelly.relay/0 (ffe.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": 1755888839.1293306, - "msecs": 129.0, - "relativeCreated": 1004.139886, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "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 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "ViDevLight.state (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": 1755888839.2298782, - "msecs": 229.0, - "relativeCreated": 1104.687469, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "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.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": 1755888839.1294556, - "msecs": 129.0, - "relativeCreated": 1004.264753, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "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.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": 1755888839.130287, - "msecs": 130.0, - "relativeCreated": 1005.096026, - "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'50'", - "asctime": "2025-08-22 20:53:59,130" - }, - { - "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": 1755888839.1713536, - "msecs": 171.0, - "relativeCreated": 1046.162713, - "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'5'", - "asctime": "2025-08-22 20:53:59,171" - }, - { - "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": 1755888839.1717591, - "msecs": 171.0, - "relativeCreated": 1046.568318, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "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.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": 1755888839.1719124, - "msecs": 171.0, - "relativeCreated": 1046.721622, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "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.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": 1755888839.1724923, - "msecs": 172.0, - "relativeCreated": 1047.301399, - "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'off'", - "asctime": "2025-08-22 20:53:59,172" - }, - { - "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.2145975, - "msecs": 214.0, - "relativeCreated": 1089.406512, - "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,214" - }, - { - "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.2148786, - "msecs": 214.0, - "relativeCreated": 1089.687576, - "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,214" - }, - { - "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.215169, - "msecs": 215.0, - "relativeCreated": 1089.978205, - "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,215" - }, - { - "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.2204933, - "msecs": 220.0, - "relativeCreated": 1095.302656, - "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,220" - }, - { - "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.2209287, - "msecs": 220.0, - "relativeCreated": 1095.737955, - "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,220" - }, - { - "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": [ - "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", - "levelno": 10, - "pathname": "/home/dirk/work/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.2224631, - "msecs": 222.0, - "relativeCreated": 1097.272547, - "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,222" - }, - { - "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.2227128, - "msecs": 222.0, - "relativeCreated": 1097.52196, - "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,222" - }, - { - "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.2229054, - "msecs": 222.0, - "relativeCreated": 1097.714664, - "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,222" - }, - { - "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.2230866, - "msecs": 223.0, - "relativeCreated": 1097.895768, - "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,223" - }, - { - "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.2232618, - "msecs": 223.0, - "relativeCreated": 1098.071087, - "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,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": 0.006266593933105469 - }, - { - "name": "__tLogger__", - "msg": "Value for Shelly.relay/0 (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.2301972, - "msecs": 230.0, - "relativeCreated": 1105.006575, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "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": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for Shelly.relay/0 (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": 1755888839.2300773, - "msecs": 230.0, - "relativeCreated": 1104.886393, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "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 Shelly.relay/0 (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": 1755888839.2301269, - "msecs": 230.0, - "relativeCreated": 1104.936154, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Expectation (Value for Shelly.relay/0 (ffe.livingroom.main_light)): result = False ()", - "asctime": "2025-08-22 20:53:59,230" - } - ], - "time_consumption": 7.033348083496094e-05 - } - ], - "time_consumption": 0.302567720413208, - "time_start": "2025-08-22 20:53:58,927", - "time_finished": "2025-08-22 20:53:59,230" - }, - "Shelly.relay/0 (ffe.livingroom.main_light) -> ViDevLight.state (ffe.livingroom.main_light)": { - "name": "__tLogger__", - "msg": "Shelly.relay/0 (ffe.livingroom.main_light) -> ViDevLight.state (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": 1755888839.230381, - "msecs": 230.0, - "relativeCreated": 1105.190183, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Shelly.relay/0 (ffe.livingroom.main_light) -> ViDevLight.state (ffe.livingroom.main_light)", - "asctime": "2025-08-22 20:53:59,230", - "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.3309784, - "msecs": 330.0, - "relativeCreated": 1205.787507, - "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,330", - "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": 1755888839.2305028, - "msecs": 230.0, - "relativeCreated": 1105.312113, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "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.07180571556091309 - }, - { - "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.3313205, - "msecs": 331.0, - "relativeCreated": 1206.129866, - "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,331", - "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.331218, - "msecs": 331.0, - "relativeCreated": 1206.02725, - "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,331" - }, - { - "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.3312778, - "msecs": 331.0, - "relativeCreated": 1206.086978, - "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,331" - } - ], - "time_consumption": 4.267692565917969e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "Shelly.relay/0 (ffe.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": 1755888839.4321167, - "msecs": 432.0, - "relativeCreated": 1306.925885, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "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.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": 1755888839.3314457, - "msecs": 331.0, - "relativeCreated": 1206.25499, - "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:53:59,331" - }, - { - "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": 1755888839.3318052, - "msecs": 331.0, - "relativeCreated": 1206.614312, - "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:53:59,331" - }, - { - "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": 1755888839.332572, - "msecs": 332.0, - "relativeCreated": 1207.381045, - "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:53:59,332" - }, - { - "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": 1755888839.3328958, - "msecs": 332.0, - "relativeCreated": 1207.705075, - "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:53:59,332" - }, - { - "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.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", - "levelno": 10, - "pathname": "/home/dirk/work/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.375899, - "msecs": 375.0, - "relativeCreated": 1250.708426, - "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:53:59,375" - }, - { - "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.3761518, - "msecs": 376.0, - "relativeCreated": 1250.961139, - "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,376" - }, - { - "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.3763587, - "msecs": 376.0, - "relativeCreated": 1251.167942, - "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,376" - }, - { - "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.3765392, - "msecs": 376.0, - "relativeCreated": 1251.348414, - "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,376" - }, - { - "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.3767264, - "msecs": 376.0, - "relativeCreated": 1251.535561, - "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,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": 0.014749765396118164 - }, - { - "name": "__tLogger__", - "msg": "Value for ViDevLight.state (ffe.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": 1755888839.43244, - "msecs": 432.0, - "relativeCreated": 1307.249316, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "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": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for ViDevLight.state (ffe.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": 1755888839.4323487, - "msecs": 432.0, - "relativeCreated": 1307.157999, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "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 ViDevLight.state (ffe.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": 1755888839.4324005, - "msecs": 432.0, - "relativeCreated": 1307.209678, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Expectation (Value for ViDevLight.state (ffe.livingroom.main_light)): result = True ()", - "asctime": "2025-08-22 20:53:59,432" - } - ], - "time_consumption": 3.9577484130859375e-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": 1755888839.5329778, - "msecs": 532.0, - "relativeCreated": 1407.787108, - "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:53:59,532", - "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": 1755888839.4325714, - "msecs": 432.0, - "relativeCreated": 1307.380587, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "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.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": 1755888839.4335148, - "msecs": 433.0, - "relativeCreated": 1308.32406, - "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'off'", - "asctime": "2025-08-22 20:53:59,433" - }, - { - "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.474324, - "msecs": 474.0, - "relativeCreated": 1349.133156, - "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,474" - }, - { - "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.474592, - "msecs": 474.0, - "relativeCreated": 1349.401169, - "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,474" - }, - { - "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.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": 1349.84395, - "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,475" - }, - { - "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.4753337, - "msecs": 475.0, - "relativeCreated": 1350.142912, - "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,475" - }, - { - "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.4754698, - "msecs": 475.0, - "relativeCreated": 1350.278982, - "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,475" - }, - { - "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.4757235, - "msecs": 475.0, - "relativeCreated": 1350.532752, - "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,475" - }, - { - "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": [ - "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.4760718, - "msecs": 476.0, - "relativeCreated": 1350.88111, - "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,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 ViDevLight.state (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": 1755888839.533203, - "msecs": 533.0, - "relativeCreated": 1408.012074, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "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 ViDevLight.state (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": 1755888839.533256, - "msecs": 533.0, - "relativeCreated": 1408.065277, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "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 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "Light.state (ffe.livingroom.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": 1755888840.1410313, - "msecs": 141.0, - "relativeCreated": 2015.840342, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "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.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.0398195, - "msecs": 39.0, - "relativeCreated": 1914.628813, - "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\": \"off\", \"brightness\": 127.0, \"color_temp\": 352.0}", - "asctime": "2025-08-22 20:54:00,039" - }, - { - "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.040078, - "msecs": 40.0, - "relativeCreated": 1914.886935, - "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\": \"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_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.0402088, - "msecs": 40.0, - "relativeCreated": 1915.018029, - "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\": \"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_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_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.0412395, - "msecs": 41.0, - "relativeCreated": 1916.048882, - "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,041" - }, - { - "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.0415885, - "msecs": 41.0, - "relativeCreated": 1916.3977, - "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,041" - }, - { - "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.0833023, - "msecs": 83.0, - "relativeCreated": 1958.111252, - "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,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": 0.056767940521240234 - }, - { - "name": "__tLogger__", - "msg": "Value for ViDevLight.state (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": 1755888840.1413548, - "msecs": 141.0, - "relativeCreated": 2016.163955, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "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": "__unittest__", - "msg": "Result (%s): %s (%s)", - "args": [ - "Value for ViDevLight.state (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": 1755888840.1412568, - "msecs": 141.0, - "relativeCreated": 2016.065979, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "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 ViDevLight.state (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": 1755888840.1413112, - "msecs": 141.0, - "relativeCreated": 2016.120555, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Expectation (Value for ViDevLight.state (ffe.livingroom.floorlamp)): result = False ()", - "asctime": "2025-08-22 20:54:00,141" - } - ], - "time_consumption": 4.363059997558594e-05 - } - ], - "time_consumption": 0.3044734001159668, - "time_start": "2025-08-22 20:53:59,836", - "time_finished": "2025-08-22 20:54:00,141" - }, - "Shelly.relay/0 (ffe.livingroom.main_light) -> Light.state (ffe.livingroom.floor_light)": { - "name": "__tLogger__", - "msg": "Shelly.relay/0 (ffe.livingroom.main_light) -> 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": 1755888840.1416233, - "msecs": 141.0, - "relativeCreated": 2016.432567, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Shelly.relay/0 (ffe.livingroom.main_light) -> Light.state (ffe.livingroom.floor_light)", - "asctime": "2025-08-22 20:54:00,141", - "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.2420151, - "msecs": 242.0, - "relativeCreated": 2116.824492, - "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,242", - "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": 1755888840.2424173, - "msecs": 242.0, - "relativeCreated": 2117.226603, - "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,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": 1755888840.2423155, - "msecs": 242.0, - "relativeCreated": 2117.124632, - "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,242" - }, - { - "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.242374, - "msecs": 242.0, - "relativeCreated": 2117.18303, - "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,242" - } - ], - "time_consumption": 4.3392181396484375e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "Shelly.relay/0 (ffe.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": 1755888840.3432484, - "msecs": 343.0, - "relativeCreated": 2218.057642, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "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.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": 1755888840.2425506, - "msecs": 242.0, - "relativeCreated": 2117.359647, - "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:00,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": 1755888840.2428913, - "msecs": 242.0, - "relativeCreated": 2117.700414, - "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:00,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": 1755888840.2436948, - "msecs": 243.0, - "relativeCreated": 2118.504084, - "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:00,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": 1755888840.2439978, - "msecs": 243.0, - "relativeCreated": 2118.806846, - "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:00,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": 1755888840.284213, - "msecs": 284.0, - "relativeCreated": 2159.022281, - "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: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": 0.01504206657409668 - }, - { - "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": 1755888840.343639, - "msecs": 343.0, - "relativeCreated": 2218.448118, - "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:54:00,343", - "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": 1755888840.343525, - "msecs": 343.0, - "relativeCreated": 2218.334186, - "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:54:00,343" - }, - { - "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": 1755888840.3435774, - "msecs": 343.0, - "relativeCreated": 2218.386656, - "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: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.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": 1755888840.3437755, - "msecs": 343.0, - "relativeCreated": 2218.584713, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "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.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": 1755888840.3447537, - "msecs": 344.0, - "relativeCreated": 2219.562792, - "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'off'", - "asctime": "2025-08-22 20:54:00,344" - }, - { - "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": 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": 2319.334056, - "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:54:00,444" - }, - { - "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": 1755888840.4445753, - "msecs": 444.0, - "relativeCreated": 2319.384577, - "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:54:00,444" - } - ], - "time_consumption": 3.6716461181640625e-05 - } - ], - "time_consumption": 0.30298876762390137, - "time_start": "2025-08-22 20:54:00,141", - "time_finished": "2025-08-22 20:54:00,444" - }, - "ViDevLight.state (ffe.livingroom.xmas_tree) -> Powerplug1P.state (ffe.livingroom.xmas-tree)": { - "name": "__tLogger__", - "msg": "ViDevLight.state (ffe.livingroom.xmas_tree) -> Powerplug1P.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.4448416, - "msecs": 444.0, - "relativeCreated": 2319.650937, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "ViDevLight.state (ffe.livingroom.xmas_tree) -> Powerplug1P.state (ffe.livingroom.xmas-tree)", - "asctime": "2025-08-22 20:54:00,444", - "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.5453248, - "msecs": 545.0, - "relativeCreated": 2420.134046, - "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,545", - "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.444968, - "msecs": 444.0, - "relativeCreated": 2319.777276, - "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,444" - } - ], - "time_consumption": 0.1003568172454834 - }, - { - "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.545678, - "msecs": 545.0, - "relativeCreated": 2420.487151, - "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,545", - "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.5455587, - "msecs": 545.0, - "relativeCreated": 2420.368083, - "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,545" - }, - { - "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.5456135, - "msecs": 545.0, - "relativeCreated": 2420.422918, - "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,545" - } - ], - "time_consumption": 6.437301635742188e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "ViDevLight.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.646269, - "msecs": 646.0, - "relativeCreated": 2521.078484, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "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 Powerplug1P.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.6466494, - "msecs": 646.0, - "relativeCreated": 2521.458567, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "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", - "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": 1755888884.9829643, - "msecs": 982.0, - "relativeCreated": 46857.773461, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "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:44,982" - }, - { - "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": 1755888884.9836907, - "msecs": 983.0, - "relativeCreated": 46858.499881, - "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:44,983" - }, - { - "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.0247219, - "msecs": 24.0, - "relativeCreated": 46899.531067, - "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,024" - }, - { - "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.0249722, - "msecs": 24.0, - "relativeCreated": 46899.781623, - "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,024" - }, - { - "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.0253215, - "msecs": 25.0, - "relativeCreated": 46900.130796, - "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,025" - }, - { - "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.0257773, - "msecs": 25.0, - "relativeCreated": 46900.586654, - "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,025" - }, - { - "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.0681872, - "msecs": 68.0, - "relativeCreated": 46942.996338, - "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,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 Shelly.relay/0 (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.08055, - "msecs": 80.0, - "relativeCreated": 46955.359025, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "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 Shelly.relay/0 (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.0806162, - "msecs": 80.0, - "relativeCreated": 46955.42537, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Expectation (Value for Shelly.relay/0 (gfw.marion.main_light)): result = True ()", - "asctime": "2025-08-22 20:54:45,080" - } - ], - "time_consumption": 5.7697296142578125e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "ViDevLight.state (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.1812465, - "msecs": 181.0, - "relativeCreated": 47056.055711, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "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", - "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.0827765, - "msecs": 82.0, - "relativeCreated": 46957.585837, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "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,082" - }, - { - "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.0835476, - "msecs": 83.0, - "relativeCreated": 46958.356783, - "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,083" - }, - { - "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.12464, - "msecs": 124.0, - "relativeCreated": 46999.449191, - "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,124" - }, - { - "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.1248977, - "msecs": 124.0, - "relativeCreated": 46999.707152, - "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,124" - }, - { - "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.1252203, - "msecs": 125.0, - "relativeCreated": 47000.029585, - "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,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": 1755888885.1256366, - "msecs": 125.0, - "relativeCreated": 47000.445857, - "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,125" - }, - { - "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.1664987, - "msecs": 166.0, - "relativeCreated": 47041.307802, - "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,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 Shelly.relay/0 (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.1814675, - "msecs": 181.0, - "relativeCreated": 47056.276759, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "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 Shelly.relay/0 (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.1815188, - "msecs": 181.0, - "relativeCreated": 47056.328111, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Expectation (Value for Shelly.relay/0 (gfw.marion.main_light)): result = False ()", - "asctime": "2025-08-22 20:54:45,181" - } - ], - "time_consumption": 3.933906555175781e-05 - } - ], - "time_consumption": 0.30267930030822754, - "time_start": "2025-08-22 20:54:44,878", - "time_finished": "2025-08-22 20:54:45,181" - }, - "Shelly.relay/0 (gfw.marion.main_light) -> ViDevLight.state (gfw.marion.main_light)": { - "name": "__tLogger__", - "msg": "Shelly.relay/0 (gfw.marion.main_light) -> ViDevLight.state (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": 1755888885.1817923, - "msecs": 181.0, - "relativeCreated": 47056.601532, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Shelly.relay/0 (gfw.marion.main_light) -> ViDevLight.state (gfw.marion.main_light)", - "asctime": "2025-08-22 20:54:45,181", - "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.2823975, - "msecs": 282.0, - "relativeCreated": 47157.206692, - "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,282", - "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.1819172, - "msecs": 181.0, - "relativeCreated": 47056.726293, - "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,181" - } - ], - "time_consumption": 0.10048031806945801 - }, - { - "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.2827773, - "msecs": 282.0, - "relativeCreated": 47157.58658, - "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,282", - "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.2826376, - "msecs": 282.0, - "relativeCreated": 47157.446704, - "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,282" - }, - { - "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.2827325, - "msecs": 282.0, - "relativeCreated": 47157.541788, - "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,282" - } - ], - "time_consumption": 4.482269287109375e-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": 1755888885.3832977, - "msecs": 383.0, - "relativeCreated": 47258.106924, - "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: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 ViDevLight.state (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.3836281, - "msecs": 383.0, - "relativeCreated": 47258.437223, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "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", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/gfw/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": 1755888886.9992652, - "msecs": 999.0, - "relativeCreated": 48874.074547, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Sending message with topic videv/gfw/floor/main_light/state/set and payload true", - "asctime": "2025-08-22 20:54:46,999" - }, - { - "name": "smart_brain.mqtt.shellies.gfw.floor.main_light.relay.0.command", - "msg": "Received message with topic %s and payload %s", - "args": [ - "shellies/gfw/floor/main_light/relay/0/command", - "b'on'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/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.001714, - "msecs": 1.0, - "relativeCreated": 48876.523073, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Received message with topic shellies/gfw/floor/main_light/relay/0/command and payload b'on'", - "asctime": "2025-08-22 20:54:47,001" - }, - { - "name": "smart_brain.mqtt.shellies.gfw.floor.main_light.relay.0", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "shellies/gfw/floor/main_light/relay/0", - "on" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755888887.0019336, - "msecs": 1.0, - "relativeCreated": 48876.742808, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Sending message with topic shellies/gfw/floor/main_light/relay/0 and payload on", - "asctime": "2025-08-22 20:54:47,001" - }, - { - "name": "smart_brain.mqtt.shellies.gfw.floor.main_light.relay.0", - "msg": "Received message with topic %s and payload %s", - "args": [ - "shellies/gfw/floor/main_light/relay/0", - "b'on'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/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.0025659, - "msecs": 2.0, - "relativeCreated": 48877.375127, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Received message with topic shellies/gfw/floor/main_light/relay/0 and payload b'on'", - "asctime": "2025-08-22 20:54:47,002" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1.get", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_light_1/get", - "b'{\"state\": \"\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/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.0439112, - "msecs": 43.0, - "relativeCreated": 48918.720306, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Received message with topic zigbee_gfw/gfw/floor/main_light_1/get and payload b'{\"state\": \"\"}'", - "asctime": "2025-08-22 20:54:47,043" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888887.0441713, - "msecs": 44.0, - "relativeCreated": 48918.980592, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "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-22 20:54:47,044" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2.get", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_light_2/get", - "b'{\"state\": \"\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/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.0445943, - "msecs": 44.0, - "relativeCreated": 48919.403359, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Received message with topic zigbee_gfw/gfw/floor/main_light_2/get and payload b'{\"state\": \"\"}'", - "asctime": "2025-08-22 20:54:47,044" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888887.0447354, - "msecs": 44.0, - "relativeCreated": 48919.544618, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "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-22 20:54:47,044" - }, - { - "name": "smart_brain.mqtt.videv.gfw.floor.main_light.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/floor/main_light/state", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/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.045072, - "msecs": 45.0, - "relativeCreated": 48919.881384, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Received message with topic videv/gfw/floor/main_light/state and payload b'true'", - "asctime": "2025-08-22 20:54:47,045" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888887.0454314, - "msecs": 45.0, - "relativeCreated": 48920.24059, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "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-22 20:54:47,045" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888887.0456362, - "msecs": 45.0, - "relativeCreated": 48920.445239, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "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-22 20:54:47,045" - }, - { - "name": "smart_brain.mqtt.videv.gfw.floor.main_light.brightness", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/floor/main_light/brightness", - "b'50'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/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.0864868, - "msecs": 86.0, - "relativeCreated": 48961.29603, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Received message with topic videv/gfw/floor/main_light/brightness and payload b'50'", - "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.relay/0 (gfw.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": 1755888887.100006, - "msecs": 100.0, - "relativeCreated": 48974.815334, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "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.relay/0 (gfw.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": 1755888887.1001172, - "msecs": 100.0, - "relativeCreated": 48974.926606, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Expectation (Value for Shelly.relay/0 (gfw.floor.main_light)): result = True ()", - "asctime": "2025-08-22 20:54:47,100" - } - ], - "time_consumption": 6.771087646484375e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "ViDevLight.state (gfw.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": 1755888887.2007709, - "msecs": 200.0, - "relativeCreated": 49075.580149, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "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", - "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": 1755888887.100356, - "msecs": 100.0, - "relativeCreated": 48975.165447, - "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: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", - "msg": "Received message with topic %s and payload %s", - "args": [ - "shellies/gfw/floor/main_light/relay/0/command", - "b'off'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/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.1424649, - "msecs": 142.0, - "relativeCreated": 49017.273888, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Received message with topic shellies/gfw/floor/main_light/relay/0/command and payload b'off'", - "asctime": "2025-08-22 20:54:47,142" - }, - { - "name": "smart_brain.mqtt.shellies.gfw.floor.main_light.relay.0", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "shellies/gfw/floor/main_light/relay/0", - "off" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755888887.1426928, - "msecs": 142.0, - "relativeCreated": 49017.502219, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Sending message with topic shellies/gfw/floor/main_light/relay/0 and payload off", - "asctime": "2025-08-22 20:54:47,142" - }, - { - "name": "smart_brain.mqtt.shellies.gfw.floor.main_light.relay.0", - "msg": "Received message with topic %s and payload %s", - "args": [ - "shellies/gfw/floor/main_light/relay/0", - "b'off'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/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.1434786, - "msecs": 143.0, - "relativeCreated": 49018.287809, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Received message with topic shellies/gfw/floor/main_light/relay/0 and payload b'off'", - "asctime": "2025-08-22 20:54:47,143" - }, - { - "name": "smart_brain.mqtt.videv.gfw.floor.main_light.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/floor/main_light/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/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.1846213, - "msecs": 184.0, - "relativeCreated": 49059.430616, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Received message with topic videv/gfw/floor/main_light/state and payload b'false'", - "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.relay/0 (gfw.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": 1755888887.2010598, - "msecs": 201.0, - "relativeCreated": 49075.869103, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "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.relay/0 (gfw.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": 1755888887.201134, - "msecs": 201.0, - "relativeCreated": 49075.943288, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Expectation (Value for Shelly.relay/0 (gfw.floor.main_light)): result = False ()", - "asctime": "2025-08-22 20:54:47,201" - } - ], - "time_consumption": 6.794929504394531e-05 - } - ], - "time_consumption": 0.30313539505004883, - "time_start": "2025-08-22 20:54:46,898", - "time_finished": "2025-08-22 20:54:47,201" - }, - "Shelly.relay/0 (gfw.floor.main_light) -> ViDevLight.state (gfw.floor.main_light)": { - "name": "__tLogger__", - "msg": "Shelly.relay/0 (gfw.floor.main_light) -> ViDevLight.state (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": 1755888887.2014627, - "msecs": 201.0, - "relativeCreated": 49076.272136, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Shelly.relay/0 (gfw.floor.main_light) -> ViDevLight.state (gfw.floor.main_light)", - "asctime": "2025-08-22 20:54:47,201", - "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": 1755888887.3022382, - "msecs": 302.0, - "relativeCreated": 49177.047387, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Prepare: Setting devices to last state False", - "asctime": "2025-08-22 20:54:47,302", - "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": 1755888887.2017107, - "msecs": 201.0, - "relativeCreated": 49076.519819, - "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:47,201" - } - ], - "time_consumption": 0.10052752494812012 - }, - { - "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": 1755888887.3025582, - "msecs": 302.0, - "relativeCreated": 49177.367376, - "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:47,302", - "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": 1755888887.3024635, - "msecs": 302.0, - "relativeCreated": 49177.27285, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Result (Start state (master, slave)): (False, False) ()", - "asctime": "2025-08-22 20:54:47,302" - }, - { - "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": 1755888887.3025181, - "msecs": 302.0, - "relativeCreated": 49177.327223, - "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:47,302" - } - ], - "time_consumption": 4.00543212890625e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "Shelly.relay/0 (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.403123, - "msecs": 403.0, - "relativeCreated": 49277.932081, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "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", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "shellies/gfw/floor/main_light/relay/0", - "on" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755888887.3026993, - "msecs": 302.0, - "relativeCreated": 49177.508549, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Sending message with topic shellies/gfw/floor/main_light/relay/0 and payload on", - "asctime": "2025-08-22 20:54:47,302" - }, - { - "name": "smart_brain.mqtt.shellies.gfw.floor.main_light.relay.0", - "msg": "Received message with topic %s and payload %s", - "args": [ - "shellies/gfw/floor/main_light/relay/0", - "b'on'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/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.3038383, - "msecs": 303.0, - "relativeCreated": 49178.64735, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Received message with topic shellies/gfw/floor/main_light/relay/0 and payload b'on'", - "asctime": "2025-08-22 20:54:47,303" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1.get", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_light_1/get", - "b'{\"state\": \"\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/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.345463, - "msecs": 345.0, - "relativeCreated": 49220.272379, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Received message with topic zigbee_gfw/gfw/floor/main_light_1/get and payload b'{\"state\": \"\"}'", - "asctime": "2025-08-22 20:54:47,345" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888887.3457057, - "msecs": 345.0, - "relativeCreated": 49220.514998, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "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-22 20:54:47,345" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2.get", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_light_2/get", - "b'{\"state\": \"\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/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.3459976, - "msecs": 345.0, - "relativeCreated": 49220.80684, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Received message with topic zigbee_gfw/gfw/floor/main_light_2/get and payload b'{\"state\": \"\"}'", - "asctime": "2025-08-22 20:54:47,345" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888887.346096, - "msecs": 346.0, - "relativeCreated": 49220.905388, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "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-22 20:54:47,346" - }, - { - "name": "smart_brain.mqtt.videv.gfw.floor.main_light.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/floor/main_light/state", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/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.346389, - "msecs": 346.0, - "relativeCreated": 49221.198226, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Received message with topic videv/gfw/floor/main_light/state and payload b'true'", - "asctime": "2025-08-22 20:54:47,346" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888887.3468375, - "msecs": 346.0, - "relativeCreated": 49221.646691, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "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-22 20:54:47,346" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888887.3470948, - "msecs": 347.0, - "relativeCreated": 49221.903978, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "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-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 ViDevLight.state (gfw.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": 1755888887.4033425, - "msecs": 403.0, - "relativeCreated": 49278.151876, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "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 ViDevLight.state (gfw.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": 1755888887.4033952, - "msecs": 403.0, - "relativeCreated": 49278.204293, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Expectation (Value for ViDevLight.state (gfw.floor.main_light)): result = True ()", - "asctime": "2025-08-22 20:54:47,403" - } - ], - "time_consumption": 6.29425048828125e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "Shelly.relay/0 (gfw.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": 1755888887.5041456, - "msecs": 504.0, - "relativeCreated": 49378.954939, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "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", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "shellies/gfw/floor/main_light/relay/0", - "off" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755888887.4035687, - "msecs": 403.0, - "relativeCreated": 49278.377957, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Sending message with topic shellies/gfw/floor/main_light/relay/0 and payload off", - "asctime": "2025-08-22 20:54:47,403" - }, - { - "name": "smart_brain.mqtt.shellies.gfw.floor.main_light.relay.0", - "msg": "Received message with topic %s and payload %s", - "args": [ - "shellies/gfw/floor/main_light/relay/0", - "b'off'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/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.404625, - "msecs": 404.0, - "relativeCreated": 49279.434187, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Received message with topic shellies/gfw/floor/main_light/relay/0 and payload b'off'", - "asctime": "2025-08-22 20:54:47,404" - }, - { - "name": "smart_brain.mqtt.videv.gfw.floor.main_light.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/floor/main_light/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/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.405907, - "msecs": 405.0, - "relativeCreated": 49280.716059, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Received message with topic videv/gfw/floor/main_light/state and payload b'false'", - "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 ViDevLight.state (gfw.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": 1755888887.5043728, - "msecs": 504.0, - "relativeCreated": 49379.181863, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "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 ViDevLight.state (gfw.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": 1755888887.5044305, - "msecs": 504.0, - "relativeCreated": 49379.239938, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Expectation (Value for ViDevLight.state (gfw.floor.main_light)): result = False ()", - "asctime": "2025-08-22 20:54:47,504" - } - ], - "time_consumption": 4.2438507080078125e-05 - } - ], - "time_consumption": 0.3030102252960205, - "time_start": "2025-08-22 20:54:47,201", - "time_finished": "2025-08-22 20:54:47,504" - }, - "ViDevLight.brightness (gfw.floor.main_light) -> Light.brightness (gfw.floor.main_light)": { - "name": "__tLogger__", - "msg": "ViDevLight.brightness (gfw.floor.main_light) -> Light.brightness (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": 1755888887.5047677, - "msecs": 504.0, - "relativeCreated": 49379.576933, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "ViDevLight.brightness (gfw.floor.main_light) -> Light.brightness (gfw.floor.main_light)", - "asctime": "2025-08-22 20:54:47,504", - "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": 1755888887.6053233, - "msecs": 605.0, - "relativeCreated": 49480.132597, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Prepare: Switching on device", - "asctime": "2025-08-22 20:54:47,605", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.shellies.gfw.floor.main_light.relay.0", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "shellies/gfw/floor/main_light/relay/0", - "on" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755888887.5048912, - "msecs": 504.0, - "relativeCreated": 49379.700435, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Sending message with topic shellies/gfw/floor/main_light/relay/0 and payload on", - "asctime": "2025-08-22 20:54:47,504" - }, - { - "name": "smart_brain.mqtt.shellies.gfw.floor.main_light.relay.0", - "msg": "Received message with topic %s and payload %s", - "args": [ - "shellies/gfw/floor/main_light/relay/0", - "b'on'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/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.5058818, - "msecs": 505.0, - "relativeCreated": 49380.691006, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Received message with topic shellies/gfw/floor/main_light/relay/0 and payload b'on'", - "asctime": "2025-08-22 20:54:47,505" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1.get", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_light_1/get", - "b'{\"state\": \"\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/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.507501, - "msecs": 507.0, - "relativeCreated": 49382.309972, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Received message with topic zigbee_gfw/gfw/floor/main_light_1/get and payload b'{\"state\": \"\"}'", - "asctime": "2025-08-22 20:54:47,507" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888887.5077317, - "msecs": 507.0, - "relativeCreated": 49382.541053, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "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-22 20:54:47,507" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2.get", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_light_2/get", - "b'{\"state\": \"\"}'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/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.5080504, - "msecs": 508.0, - "relativeCreated": 49382.859778, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Received message with topic zigbee_gfw/gfw/floor/main_light_2/get and payload b'{\"state\": \"\"}'", - "asctime": "2025-08-22 20:54:47,508" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888887.508176, - "msecs": 508.0, - "relativeCreated": 49382.985421, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "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-22 20:54:47,508" - }, - { - "name": "smart_brain.mqtt.videv.gfw.floor.main_light.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/floor/main_light/state", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/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.5085268, - "msecs": 508.0, - "relativeCreated": 49383.336123, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Received message with topic videv/gfw/floor/main_light/state and payload b'true'", - "asctime": "2025-08-22 20:54:47,508" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888887.5088422, - "msecs": 508.0, - "relativeCreated": 49383.65147, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "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-22 20:54:47,508" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888887.509071, - "msecs": 509.0, - "relativeCreated": 49383.880385, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "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-22 20:54:47,509" - } - ], - "time_consumption": 0.0962522029876709 - }, - { - "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": 1755888887.7062542, - "msecs": 706.0, - "relativeCreated": 49581.06357, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Prepare: Setting devices to last state 100", - "asctime": "2025-08-22 20:54:47,706", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.gfw.floor.main_light.brightness.set", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/gfw/floor/main_light/brightness/set", - "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": 1755888887.6055787, - "msecs": 605.0, - "relativeCreated": 49480.38805, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Sending message with topic videv/gfw/floor/main_light/brightness/set and payload 100", - "asctime": "2025-08-22 20:54:47,605" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888887.6059005, - "msecs": 605.0, - "relativeCreated": 49480.709661, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "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-22 20:54:47,605" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888887.606018, - "msecs": 606.0, - "relativeCreated": 49480.82732, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "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-22 20:54:47,606" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888887.608223, - "msecs": 608.0, - "relativeCreated": 49483.032337, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "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-22 20:54:47,608" - }, - { - "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'{\"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": 1755888887.6085656, - "msecs": 608.0, - "relativeCreated": 49483.37473, - "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'{\"brightness\": 254}'", - "asctime": "2025-08-22 20:54:47,608" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888887.649267, - "msecs": 649.0, - "relativeCreated": 49524.076221, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "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-22 20:54:47,649" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888887.649599, - "msecs": 649.0, - "relativeCreated": 49524.408207, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "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-22 20:54:47,649" - }, - { - "name": "smart_brain.mqtt.videv.gfw.floor.main_light.brightness", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/floor/main_light/brightness", - "b'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": 1755888887.650802, - "msecs": 650.0, - "relativeCreated": 49525.611263, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Received message with topic videv/gfw/floor/main_light/brightness and payload b'100'", - "asctime": "2025-08-22 20:54:47,650" - } - ], - "time_consumption": 0.05545234680175781 - }, - { - "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": 1755888887.706641, - "msecs": 706.0, - "relativeCreated": 49581.450126, - "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:47,706", - "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": 1755888887.706518, - "msecs": 706.0, - "relativeCreated": 49581.327316, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Result (Start state (master, slave)): (100, 100) ()", - "asctime": "2025-08-22 20:54:47,706" - }, - { - "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": 1755888887.7065735, - "msecs": 706.0, - "relativeCreated": 49581.38271, - "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:47,706" - } - ], - "time_consumption": 6.747245788574219e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "ViDevLight.brightness (gfw.floor.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": 1755888887.8071551, - "msecs": 807.0, - "relativeCreated": 49681.964412, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "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", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/gfw/floor/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": 1755888887.706776, - "msecs": 706.0, - "relativeCreated": 49581.58502, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Sending message with topic videv/gfw/floor/main_light/brightness/set and payload 0", - "asctime": "2025-08-22 20:54:47,706" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888887.709185, - "msecs": 709.0, - "relativeCreated": 49583.994012, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "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-22 20:54:47,709" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888887.7093973, - "msecs": 709.0, - "relativeCreated": 49584.206501, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "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-22 20:54:47,709" - }, - { - "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'{\"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": 1755888887.7097416, - "msecs": 709.0, - "relativeCreated": 49584.550916, - "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'{\"brightness\": 1}'", - "asctime": "2025-08-22 20:54:47,709" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888887.7098694, - "msecs": 709.0, - "relativeCreated": 49584.678493, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "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-22 20:54:47,709" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888887.7106013, - "msecs": 710.0, - "relativeCreated": 49585.410531, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "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-22 20:54:47,710" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888887.7109005, - "msecs": 710.0, - "relativeCreated": 49585.709614, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "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-22 20:54:47,710" - }, - { - "name": "smart_brain.mqtt.videv.gfw.floor.main_light.brightness", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/floor/main_light/brightness", - "b'0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/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.7522523, - "msecs": 752.0, - "relativeCreated": 49627.061657, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Received message with topic videv/gfw/floor/main_light/brightness and payload b'0'", - "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 Light.brightness (gfw.floor.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": 1755888887.8074067, - "msecs": 807.0, - "relativeCreated": 49682.215849, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "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 Light.brightness (gfw.floor.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": 1755888887.8074598, - "msecs": 807.0, - "relativeCreated": 49682.268955, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Expectation (Value for Light.brightness (gfw.floor.main_light)): result = 0 ()", - "asctime": "2025-08-22 20:54:47,807" - } - ], - "time_consumption": 3.7670135498046875e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "ViDevLight.brightness (gfw.floor.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": 1755888887.9080462, - "msecs": 908.0, - "relativeCreated": 49782.855681, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "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", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/gfw/floor/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": 1755888887.8075962, - "msecs": 807.0, - "relativeCreated": 49682.405594, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Sending message with topic videv/gfw/floor/main_light/brightness/set and payload 20", - "asctime": "2025-08-22 20:54:47,807" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888887.8100674, - "msecs": 810.0, - "relativeCreated": 49684.876779, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "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-22 20:54:47,810" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888887.8102903, - "msecs": 810.0, - "relativeCreated": 49685.099689, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "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-22 20:54:47,810" - }, - { - "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'{\"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": 1755888887.810625, - "msecs": 810.0, - "relativeCreated": 49685.434201, - "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'{\"brightness\": 52}'", - "asctime": "2025-08-22 20:54:47,810" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888887.8107708, - "msecs": 810.0, - "relativeCreated": 49685.579909, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "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-22 20:54:47,810" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888887.8114147, - "msecs": 811.0, - "relativeCreated": 49686.224048, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "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-22 20:54:47,811" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888887.8117228, - "msecs": 811.0, - "relativeCreated": 49686.531909, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "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-22 20:54:47,811" - }, - { - "name": "smart_brain.mqtt.videv.gfw.floor.main_light.brightness", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/floor/main_light/brightness", - "b'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": 1755888887.8535395, - "msecs": 853.0, - "relativeCreated": 49728.348868, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Received message with topic videv/gfw/floor/main_light/brightness and payload b'20'", - "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 Light.brightness (gfw.floor.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": 1755888887.9083018, - "msecs": 908.0, - "relativeCreated": 49783.111038, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "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 Light.brightness (gfw.floor.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": 1755888887.908355, - "msecs": 908.0, - "relativeCreated": 49783.164312, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Expectation (Value for Light.brightness (gfw.floor.main_light)): result = 20 ()", - "asctime": "2025-08-22 20:54:47,908" - } - ], - "time_consumption": 3.7670135498046875e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "ViDevLight.brightness (gfw.floor.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": 1755888888.0088594, - "msecs": 8.0, - "relativeCreated": 49883.668661, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "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", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/gfw/floor/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": 1755888887.9085026, - "msecs": 908.0, - "relativeCreated": 49783.311665, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Sending message with topic videv/gfw/floor/main_light/brightness/set and payload 40", - "asctime": "2025-08-22 20:54:47,908" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888887.9111257, - "msecs": 911.0, - "relativeCreated": 49785.93504, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "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-22 20:54:47,911" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888887.9113255, - "msecs": 911.0, - "relativeCreated": 49786.134717, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "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-22 20:54:47,911" - }, - { - "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'{\"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": 1755888887.9116685, - "msecs": 911.0, - "relativeCreated": 49786.477838, - "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'{\"brightness\": 102}'", - "asctime": "2025-08-22 20:54:47,911" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888887.911805, - "msecs": 911.0, - "relativeCreated": 49786.614264, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "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-22 20:54:47,911" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888887.9124508, - "msecs": 912.0, - "relativeCreated": 49787.260143, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "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-22 20:54:47,912" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888887.912749, - "msecs": 912.0, - "relativeCreated": 49787.558375, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "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-22 20:54:47,912" - }, - { - "name": "smart_brain.mqtt.videv.gfw.floor.main_light.brightness", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/floor/main_light/brightness", - "b'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": 1755888887.9546864, - "msecs": 954.0, - "relativeCreated": 49829.495729, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Received message with topic videv/gfw/floor/main_light/brightness and payload b'40'", - "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 Light.brightness (gfw.floor.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": 1755888888.0091228, - "msecs": 9.0, - "relativeCreated": 49883.932158, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "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 Light.brightness (gfw.floor.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": 1755888888.0091984, - "msecs": 9.0, - "relativeCreated": 49884.007587, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Expectation (Value for Light.brightness (gfw.floor.main_light)): result = 40 ()", - "asctime": "2025-08-22 20:54:48,009" - } - ], - "time_consumption": 4.482269287109375e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "ViDevLight.brightness (gfw.floor.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": 1755888888.1097128, - "msecs": 109.0, - "relativeCreated": 49984.522101, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "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", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/gfw/floor/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": 1755888888.0093496, - "msecs": 9.0, - "relativeCreated": 49884.15885, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Sending message with topic videv/gfw/floor/main_light/brightness/set and payload 60", - "asctime": "2025-08-22 20:54:48,009" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888888.0118115, - "msecs": 11.0, - "relativeCreated": 49886.620825, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "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-22 20:54:48,011" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888888.0120125, - "msecs": 12.0, - "relativeCreated": 49886.821687, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "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-22 20:54:48,012" - }, - { - "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'{\"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": 1755888888.012355, - "msecs": 12.0, - "relativeCreated": 49887.164328, - "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'{\"brightness\": 153}'", - "asctime": "2025-08-22 20:54:48,012" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888888.0124776, - "msecs": 12.0, - "relativeCreated": 49887.287036, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "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-22 20:54:48,012" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888888.0130575, - "msecs": 13.0, - "relativeCreated": 49887.866854, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "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-22 20:54:48,013" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888888.0133417, - "msecs": 13.0, - "relativeCreated": 49888.150834, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "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-22 20:54:48,013" - }, - { - "name": "smart_brain.mqtt.videv.gfw.floor.main_light.brightness", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/floor/main_light/brightness", - "b'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": 1755888888.0544286, - "msecs": 54.0, - "relativeCreated": 49929.237842, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Received message with topic videv/gfw/floor/main_light/brightness and payload b'60'", - "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 Light.brightness (gfw.floor.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": 1755888888.1099803, - "msecs": 109.0, - "relativeCreated": 49984.789682, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "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 Light.brightness (gfw.floor.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": 1755888888.1100345, - "msecs": 110.0, - "relativeCreated": 49984.843597, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Expectation (Value for Light.brightness (gfw.floor.main_light)): result = 60 ()", - "asctime": "2025-08-22 20:54:48,110" - } - ], - "time_consumption": 6.532669067382812e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "ViDevLight.brightness (gfw.floor.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": 1755888888.210566, - "msecs": 210.0, - "relativeCreated": 50085.375496, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "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", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/gfw/floor/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": 1755888888.1102078, - "msecs": 110.0, - "relativeCreated": 49985.016962, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Sending message with topic videv/gfw/floor/main_light/brightness/set and payload 80", - "asctime": "2025-08-22 20:54:48,110" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888888.112784, - "msecs": 112.0, - "relativeCreated": 49987.593093, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "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-22 20:54:48,112" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888888.1130033, - "msecs": 113.0, - "relativeCreated": 49987.812553, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "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-22 20:54:48,113" - }, - { - "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'{\"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": 1755888888.113333, - "msecs": 113.0, - "relativeCreated": 49988.142192, - "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'{\"brightness\": 203}'", - "asctime": "2025-08-22 20:54:48,113" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888888.113455, - "msecs": 113.0, - "relativeCreated": 49988.264415, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "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-22 20:54:48,113" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888888.1142557, - "msecs": 114.0, - "relativeCreated": 49989.064826, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "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-22 20:54:48,114" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888888.11454, - "msecs": 114.0, - "relativeCreated": 49989.3493, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "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-22 20:54:48,114" - }, - { - "name": "smart_brain.mqtt.videv.gfw.floor.main_light.brightness", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/floor/main_light/brightness", - "b'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": 1755888888.155403, - "msecs": 155.0, - "relativeCreated": 50030.212257, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Received message with topic videv/gfw/floor/main_light/brightness and payload b'80'", - "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 Light.brightness (gfw.floor.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": 1755888888.2108688, - "msecs": 210.0, - "relativeCreated": 50085.677923, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "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 Light.brightness (gfw.floor.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": 1755888888.2109244, - "msecs": 210.0, - "relativeCreated": 50085.733408, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Expectation (Value for Light.brightness (gfw.floor.main_light)): result = 80 ()", - "asctime": "2025-08-22 20:54:48,210" - } - ], - "time_consumption": 4.00543212890625e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "ViDevLight.brightness (gfw.floor.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": 1755888888.3114522, - "msecs": 311.0, - "relativeCreated": 50186.261405, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "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", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/gfw/floor/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": 1755888888.2110763, - "msecs": 211.0, - "relativeCreated": 50085.885576, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Sending message with topic videv/gfw/floor/main_light/brightness/set and payload 100", - "asctime": "2025-08-22 20:54:48,211" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888888.213703, - "msecs": 213.0, - "relativeCreated": 50088.512144, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "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-22 20:54:48,213" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888888.2139196, - "msecs": 213.0, - "relativeCreated": 50088.729012, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "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-22 20:54:48,213" - }, - { - "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'{\"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": 1755888888.2142692, - "msecs": 214.0, - "relativeCreated": 50089.078437, - "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'{\"brightness\": 254}'", - "asctime": "2025-08-22 20:54:48,214" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888888.2143927, - "msecs": 214.0, - "relativeCreated": 50089.20177, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "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-22 20:54:48,214" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888888.2150202, - "msecs": 215.0, - "relativeCreated": 50089.829577, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "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-22 20:54:48,215" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888888.2153013, - "msecs": 215.0, - "relativeCreated": 50090.110724, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "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-22 20:54:48,215" - }, - { - "name": "smart_brain.mqtt.videv.gfw.floor.main_light.brightness", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/floor/main_light/brightness", - "b'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": 1755888888.2562392, - "msecs": 256.0, - "relativeCreated": 50131.048335, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Received message with topic videv/gfw/floor/main_light/brightness and payload b'100'", - "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 Light.brightness (gfw.floor.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": 1755888888.311741, - "msecs": 311.0, - "relativeCreated": 50186.550457, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "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 Light.brightness (gfw.floor.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": 1755888888.311796, - "msecs": 311.0, - "relativeCreated": 50186.605235, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Expectation (Value for Light.brightness (gfw.floor.main_light)): result = 100 ()", - "asctime": "2025-08-22 20:54:48,311" - } - ], - "time_consumption": 4.0531158447265625e-05 - } - ], - "time_consumption": 0.8070688247680664, - "time_start": "2025-08-22 20:54:47,504", - "time_finished": "2025-08-22 20:54:48,311" - }, - "Light.brightness (gfw.floor.main_light) -> ViDevLight.brightness (gfw.floor.main_light)": { - "name": "__tLogger__", - "msg": "Light.brightness (gfw.floor.main_light) -> ViDevLight.brightness (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": 1755888888.3120954, - "msecs": 312.0, - "relativeCreated": 50186.904807, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Light.brightness (gfw.floor.main_light) -> ViDevLight.brightness (gfw.floor.main_light)", - "asctime": "2025-08-22 20:54:48,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": 1755888888.4124758, - "msecs": 412.0, - "relativeCreated": 50287.28523, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Prepare: Switching on device", - "asctime": "2025-08-22 20:54:48,412", - "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": 1755888888.5133557, - "msecs": 513.0, - "relativeCreated": 50388.164945, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Prepare: Setting devices to last state 100", - "asctime": "2025-08-22 20:54:48,513", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.gfw.floor.main_light.brightness.set", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/gfw/floor/main_light/brightness/set", - "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": 1755888888.4128509, - "msecs": 412.0, - "relativeCreated": 50287.660145, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Sending message with topic videv/gfw/floor/main_light/brightness/set and payload 100", - "asctime": "2025-08-22 20:54:48,412" - } - ], - "time_consumption": 0.10050487518310547 - }, - { - "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": 1755888888.513785, - "msecs": 513.0, - "relativeCreated": 50388.594028, - "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:48,513", - "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": 1755888888.5136192, - "msecs": 513.0, - "relativeCreated": 50388.428499, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Result (Start state (master, slave)): (100, 100) ()", - "asctime": "2025-08-22 20:54:48,513" - }, - { - "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": 1755888888.5137177, - "msecs": 513.0, - "relativeCreated": 50388.526884, - "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:48,513" - } - ], - "time_consumption": 6.723403930664062e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "Light.brightness (gfw.floor.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": 1755888888.6145504, - "msecs": 614.0, - "relativeCreated": 50489.359424, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "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", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888888.5139692, - "msecs": 513.0, - "relativeCreated": 50388.778262, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "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-22 20:54:48,513" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888888.5142262, - "msecs": 514.0, - "relativeCreated": 50389.035505, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "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-22 20:54:48,514" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888888.515099, - "msecs": 515.0, - "relativeCreated": 50389.90834, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "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-22 20:54:48,515" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888888.51544, - "msecs": 515.0, - "relativeCreated": 50390.249168, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "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-22 20:54:48,515" - }, - { - "name": "smart_brain.mqtt.videv.gfw.floor.main_light.brightness", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/floor/main_light/brightness", - "b'0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755888888.5170503, - "msecs": 517.0, - "relativeCreated": 50391.859639, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Received message with topic videv/gfw/floor/main_light/brightness and payload b'0'", - "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 ViDevLight.brightness (gfw.floor.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": 1755888888.6147916, - "msecs": 614.0, - "relativeCreated": 50489.601002, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "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 ViDevLight.brightness (gfw.floor.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": 1755888888.6148465, - "msecs": 614.0, - "relativeCreated": 50489.655613, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Expectation (Value for ViDevLight.brightness (gfw.floor.main_light)): result = 0 ()", - "asctime": "2025-08-22 20:54:48,614" - } - ], - "time_consumption": 3.910064697265625e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "Light.brightness (gfw.floor.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": 1755888888.7158248, - "msecs": 715.0, - "relativeCreated": 50590.634121, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "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", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888888.6150472, - "msecs": 615.0, - "relativeCreated": 50489.856365, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "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-22 20:54:48,615" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888888.6153162, - "msecs": 615.0, - "relativeCreated": 50490.125539, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "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-22 20:54:48,615" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888888.6160622, - "msecs": 616.0, - "relativeCreated": 50490.871319, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "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-22 20:54:48,616" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888888.6163995, - "msecs": 616.0, - "relativeCreated": 50491.208887, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "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-22 20:54:48,616" - }, - { - "name": "smart_brain.mqtt.videv.gfw.floor.main_light.brightness", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/floor/main_light/brightness", - "b'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": 1755888888.657269, - "msecs": 657.0, - "relativeCreated": 50532.07824, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Received message with topic videv/gfw/floor/main_light/brightness and payload b'20'", - "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 ViDevLight.brightness (gfw.floor.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": 1755888888.7160423, - "msecs": 716.0, - "relativeCreated": 50590.851562, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "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 ViDevLight.brightness (gfw.floor.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": 1755888888.7160964, - "msecs": 716.0, - "relativeCreated": 50590.905769, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Expectation (Value for ViDevLight.brightness (gfw.floor.main_light)): result = 20 ()", - "asctime": "2025-08-22 20:54:48,716" - } - ], - "time_consumption": 4.291534423828125e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "Light.brightness (gfw.floor.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": 1755888888.817017, - "msecs": 817.0, - "relativeCreated": 50691.826388, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "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", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888888.7163079, - "msecs": 716.0, - "relativeCreated": 50591.117181, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "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-22 20:54:48,716" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888888.7165656, - "msecs": 716.0, - "relativeCreated": 50591.374712, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "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-22 20:54:48,716" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888888.7173345, - "msecs": 717.0, - "relativeCreated": 50592.14385, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "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-22 20:54:48,717" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888888.7177148, - "msecs": 717.0, - "relativeCreated": 50592.523866, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "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-22 20:54:48,717" - }, - { - "name": "smart_brain.mqtt.videv.gfw.floor.main_light.brightness", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/floor/main_light/brightness", - "b'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": 1755888888.7583053, - "msecs": 758.0, - "relativeCreated": 50633.114593, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Received message with topic videv/gfw/floor/main_light/brightness and payload b'40'", - "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 ViDevLight.brightness (gfw.floor.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": 1755888888.8172343, - "msecs": 817.0, - "relativeCreated": 50692.043433, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "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 ViDevLight.brightness (gfw.floor.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": 1755888888.8173165, - "msecs": 817.0, - "relativeCreated": 50692.125745, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Expectation (Value for ViDevLight.brightness (gfw.floor.main_light)): result = 40 ()", - "asctime": "2025-08-22 20:54:48,817" - } - ], - "time_consumption": 5.5789947509765625e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "Light.brightness (gfw.floor.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": 1755888888.9183109, - "msecs": 918.0, - "relativeCreated": 50793.120172, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "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", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888888.8175502, - "msecs": 817.0, - "relativeCreated": 50692.359291, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "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-22 20:54:48,817" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888888.8178358, - "msecs": 817.0, - "relativeCreated": 50692.644944, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "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-22 20:54:48,817" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888888.8187904, - "msecs": 818.0, - "relativeCreated": 50693.599653, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "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-22 20:54:48,818" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888888.8191254, - "msecs": 819.0, - "relativeCreated": 50693.934748, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "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-22 20:54:48,819" - }, - { - "name": "smart_brain.mqtt.videv.gfw.floor.main_light.brightness", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/floor/main_light/brightness", - "b'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": 1755888888.86034, - "msecs": 860.0, - "relativeCreated": 50735.149369, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Received message with topic videv/gfw/floor/main_light/brightness and payload b'60'", - "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 ViDevLight.brightness (gfw.floor.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": 1755888888.9185305, - "msecs": 918.0, - "relativeCreated": 50793.339902, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "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 ViDevLight.brightness (gfw.floor.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": 1755888888.9185853, - "msecs": 918.0, - "relativeCreated": 50793.394599, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Expectation (Value for ViDevLight.brightness (gfw.floor.main_light)): result = 60 ()", - "asctime": "2025-08-22 20:54:48,918" - } - ], - "time_consumption": 4.267692565917969e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "Light.brightness (gfw.floor.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": 1755888889.0195749, - "msecs": 19.0, - "relativeCreated": 50894.384054, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "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", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888888.9188337, - "msecs": 918.0, - "relativeCreated": 50793.6429, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "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-22 20:54:48,918" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888888.9191062, - "msecs": 919.0, - "relativeCreated": 50793.915549, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "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-22 20:54:48,919" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888888.919919, - "msecs": 919.0, - "relativeCreated": 50794.728289, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "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-22 20:54:48,919" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888888.9202647, - "msecs": 920.0, - "relativeCreated": 50795.073992, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "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-22 20:54:48,920" - }, - { - "name": "smart_brain.mqtt.videv.gfw.floor.main_light.brightness", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/floor/main_light/brightness", - "b'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": 1755888888.9612823, - "msecs": 961.0, - "relativeCreated": 50836.091582, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Received message with topic videv/gfw/floor/main_light/brightness and payload b'80'", - "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 ViDevLight.brightness (gfw.floor.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": 1755888889.0198247, - "msecs": 19.0, - "relativeCreated": 50894.633799, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "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 ViDevLight.brightness (gfw.floor.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": 1755888889.0198805, - "msecs": 19.0, - "relativeCreated": 50894.689696, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Expectation (Value for ViDevLight.brightness (gfw.floor.main_light)): result = 80 ()", - "asctime": "2025-08-22 20:54:49,019" - } - ], - "time_consumption": 4.291534423828125e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "Light.brightness (gfw.floor.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": 1755888889.120829, - "msecs": 120.0, - "relativeCreated": 50995.638532, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "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", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888889.020124, - "msecs": 20.0, - "relativeCreated": 50894.933155, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "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-22 20:54:49,020" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888889.0203702, - "msecs": 20.0, - "relativeCreated": 50895.179408, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "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-22 20:54:49,020" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888889.0211751, - "msecs": 21.0, - "relativeCreated": 50895.984314, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "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-22 20:54:49,021" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888889.021495, - "msecs": 21.0, - "relativeCreated": 50896.304393, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "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-22 20:54:49,021" - }, - { - "name": "smart_brain.mqtt.videv.gfw.floor.main_light.brightness", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/floor/main_light/brightness", - "b'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": 1755888889.0622795, - "msecs": 62.0, - "relativeCreated": 50937.08875, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Received message with topic videv/gfw/floor/main_light/brightness and payload b'100'", - "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 ViDevLight.brightness (gfw.floor.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": 1755888889.1210735, - "msecs": 121.0, - "relativeCreated": 50995.882758, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "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 ViDevLight.brightness (gfw.floor.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": 1755888889.121128, - "msecs": 121.0, - "relativeCreated": 50995.937514, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Expectation (Value for ViDevLight.brightness (gfw.floor.main_light)): result = 100 ()", - "asctime": "2025-08-22 20:54:49,121" - } - ], - "time_consumption": 4.1484832763671875e-05 - } - ], - "time_consumption": 0.8090741634368896, - "time_start": "2025-08-22 20:54:48,312", - "time_finished": "2025-08-22 20:54:49,121" - }, - "ViDevLight.color_temp (gfw.floor.main_light) -> Light.color_temp (gfw.floor.main_light)": { - "name": "__tLogger__", - "msg": "ViDevLight.color_temp (gfw.floor.main_light) -> Light.color_temp (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": 1755888889.121425, - "msecs": 121.0, - "relativeCreated": 50996.234247, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "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": [ - { - "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": 1755888889.2218244, - "msecs": 221.0, - "relativeCreated": 51096.633666, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Prepare: Switching on device", - "asctime": "2025-08-22 20:54:49,221", - "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": 1755888889.3230464, - "msecs": 323.0, - "relativeCreated": 51197.855711, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Prepare: Setting devices to last state 10", - "asctime": "2025-08-22 20:54:49,323", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.gfw.floor.main_light.color_temp.set", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/gfw/floor/main_light/color_temp/set", - "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": 1755888889.2221375, - "msecs": 222.0, - "relativeCreated": 51096.946588, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Sending message with topic videv/gfw/floor/main_light/color_temp/set and payload 10", - "asctime": "2025-08-22 20:54:49,222" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888889.2224643, - "msecs": 222.0, - "relativeCreated": 51097.273528, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "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-22 20:54:49,222" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888889.2226422, - "msecs": 222.0, - "relativeCreated": 51097.451369, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "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-22 20:54:49,222" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888889.2250488, - "msecs": 225.0, - "relativeCreated": 51099.858149, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "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-22 20:54:49,225" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888889.225431, - "msecs": 225.0, - "relativeCreated": 51100.240217, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "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-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", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888889.266688, - "msecs": 266.0, - "relativeCreated": 51141.497254, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "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-22 20:54:49,266" - }, - { - "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'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": 1755888889.2669265, - "msecs": 266.0, - "relativeCreated": 51141.735757, - "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'10'", - "asctime": "2025-08-22 20:54:49,266" - } - ], - "time_consumption": 0.05611991882324219 - }, - { - "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": 1755888889.3234324, - "msecs": 323.0, - "relativeCreated": 51198.241712, - "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:49,323", - "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": 1755888889.3233302, - "msecs": 323.0, - "relativeCreated": 51198.139241, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Result (Start state (master, slave)): (10, 10) ()", - "asctime": "2025-08-22 20:54:49,323" - }, - { - "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": 1755888889.3233883, - "msecs": 323.0, - "relativeCreated": 51198.197671, - "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:49,323" - } - ], - "time_consumption": 4.410743713378906e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "ViDevLight.color_temp (gfw.floor.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": 1755888889.424111, - "msecs": 424.0, - "relativeCreated": 51298.920076, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "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", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/gfw/floor/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": 1755888889.3235495, - "msecs": 323.0, - "relativeCreated": 51198.358589, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Sending message with topic videv/gfw/floor/main_light/color_temp/set and payload 0", - "asctime": "2025-08-22 20:54:49,323" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888889.326302, - "msecs": 326.0, - "relativeCreated": 51201.111172, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "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-22 20:54:49,326" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888889.3265345, - "msecs": 326.0, - "relativeCreated": 51201.34368, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "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-22 20:54:49,326" - }, - { - "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\": 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": 1755888889.3269072, - "msecs": 326.0, - "relativeCreated": 51201.716426, - "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\": 250}'", - "asctime": "2025-08-22 20:54:49,326" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888889.327044, - "msecs": 327.0, - "relativeCreated": 51201.853264, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "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-22 20:54:49,327" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888889.327677, - "msecs": 327.0, - "relativeCreated": 51202.486056, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "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-22 20:54:49,327" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888889.3279324, - "msecs": 327.0, - "relativeCreated": 51202.741602, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "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-22 20:54:49,327" - }, - { - "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'0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/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.3690045, - "msecs": 369.0, - "relativeCreated": 51243.813691, - "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'0'", - "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 Light.color_temp (gfw.floor.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": 1755888889.4243784, - "msecs": 424.0, - "relativeCreated": 51299.187574, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "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 Light.color_temp (gfw.floor.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": 1755888889.4244316, - "msecs": 424.0, - "relativeCreated": 51299.240763, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Expectation (Value for Light.color_temp (gfw.floor.main_light)): result = 0 ()", - "asctime": "2025-08-22 20:54:49,424" - } - ], - "time_consumption": 4.00543212890625e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "ViDevLight.color_temp (gfw.floor.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": 1755888889.5249884, - "msecs": 524.0, - "relativeCreated": 51399.797526, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "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", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/gfw/floor/main_light/color_temp/set", - "2" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 75, - "funcName": "send", - "created": 1755888889.4245763, - "msecs": 424.0, - "relativeCreated": 51299.385551, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Sending message with topic videv/gfw/floor/main_light/color_temp/set and payload 2", - "asctime": "2025-08-22 20:54:49,424" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888889.4273129, - "msecs": 427.0, - "relativeCreated": 51302.122099, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "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-22 20:54:49,427" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888889.4275384, - "msecs": 427.0, - "relativeCreated": 51302.347754, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "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-22 20:54:49,427" - }, - { - "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\": 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": 1755888889.4279256, - "msecs": 427.0, - "relativeCreated": 51302.734622, - "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\": 291}'", - "asctime": "2025-08-22 20:54:49,427" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888889.4280632, - "msecs": 428.0, - "relativeCreated": 51302.872389, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "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-22 20:54:49,428" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888889.4286518, - "msecs": 428.0, - "relativeCreated": 51303.460921, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "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-22 20:54:49,428" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888889.4289172, - "msecs": 428.0, - "relativeCreated": 51303.726512, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "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-22 20:54:49,428" - }, - { - "name": "smart_brain.mqtt.videv.gfw.floor.main_light.color_temp", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/floor/main_light/color_temp", - "b'2'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/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.4700925, - "msecs": 470.0, - "relativeCreated": 51344.901856, - "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'2'", - "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 Light.color_temp (gfw.floor.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": 1755888889.5252588, - "msecs": 525.0, - "relativeCreated": 51400.067997, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "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 Light.color_temp (gfw.floor.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": 1755888889.525312, - "msecs": 525.0, - "relativeCreated": 51400.121214, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Expectation (Value for Light.color_temp (gfw.floor.main_light)): result = 2 ()", - "asctime": "2025-08-22 20:54:49,525" - } - ], - "time_consumption": 3.886222839355469e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "ViDevLight.color_temp (gfw.floor.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": 1755888889.625774, - "msecs": 625.0, - "relativeCreated": 51500.583161, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "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", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/gfw/floor/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": 1755888889.5254579, - "msecs": 525.0, - "relativeCreated": 51400.267093, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Sending message with topic videv/gfw/floor/main_light/color_temp/set and payload 4", - "asctime": "2025-08-22 20:54:49,525" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888889.528016, - "msecs": 528.0, - "relativeCreated": 51402.825252, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "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-22 20:54:49,528" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888889.5288603, - "msecs": 528.0, - "relativeCreated": 51403.669739, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "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-22 20:54:49,528" - }, - { - "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\": 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": 1755888889.5292404, - "msecs": 529.0, - "relativeCreated": 51404.049445, - "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\": 332}'", - "asctime": "2025-08-22 20:54:49,529" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888889.5293753, - "msecs": 529.0, - "relativeCreated": 51404.184531, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "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-22 20:54:49,529" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888889.5300026, - "msecs": 530.0, - "relativeCreated": 51404.81184, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "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-22 20:54:49,530" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888889.5302372, - "msecs": 530.0, - "relativeCreated": 51405.04647, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "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-22 20:54:49,530" - }, - { - "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'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": 1755888889.571187, - "msecs": 571.0, - "relativeCreated": 51445.996243, - "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'4'", - "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 Light.color_temp (gfw.floor.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": 1755888889.6260142, - "msecs": 626.0, - "relativeCreated": 51500.823378, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "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 Light.color_temp (gfw.floor.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": 1755888889.6260774, - "msecs": 626.0, - "relativeCreated": 51500.886594, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Expectation (Value for Light.color_temp (gfw.floor.main_light)): result = 4 ()", - "asctime": "2025-08-22 20:54:49,626" - } - ], - "time_consumption": 3.6716461181640625e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "ViDevLight.color_temp (gfw.floor.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": 1755888889.7267067, - "msecs": 726.0, - "relativeCreated": 51601.515867, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "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", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/gfw/floor/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": 1755888889.6262136, - "msecs": 626.0, - "relativeCreated": 51501.02282, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Sending message with topic videv/gfw/floor/main_light/color_temp/set and payload 6", - "asctime": "2025-08-22 20:54:49,626" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888889.6284645, - "msecs": 628.0, - "relativeCreated": 51503.273544, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "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-22 20:54:49,628" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888889.6286845, - "msecs": 628.0, - "relativeCreated": 51503.49382, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "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-22 20:54:49,628" - }, - { - "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\": 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": 1755888889.6290147, - "msecs": 629.0, - "relativeCreated": 51503.824145, - "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\": 372}'", - "asctime": "2025-08-22 20:54:49,629" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888889.62914, - "msecs": 629.0, - "relativeCreated": 51503.949154, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "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-22 20:54:49,629" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888889.629547, - "msecs": 629.0, - "relativeCreated": 51504.356119, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "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-22 20:54:49,629" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888889.6297858, - "msecs": 629.0, - "relativeCreated": 51504.595055, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "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-22 20:54:49,629" - }, - { - "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'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": 1755888889.670965, - "msecs": 670.0, - "relativeCreated": 51545.774207, - "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'6'", - "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 Light.color_temp (gfw.floor.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": 1755888889.7269742, - "msecs": 726.0, - "relativeCreated": 51601.78356, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "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 Light.color_temp (gfw.floor.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": 1755888889.7270296, - "msecs": 727.0, - "relativeCreated": 51601.838763, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Expectation (Value for Light.color_temp (gfw.floor.main_light)): result = 6 ()", - "asctime": "2025-08-22 20:54:49,727" - } - ], - "time_consumption": 3.981590270996094e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "ViDevLight.color_temp (gfw.floor.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": 1755888889.8277085, - "msecs": 827.0, - "relativeCreated": 51702.517579, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "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", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/gfw/floor/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": 1755888889.7272003, - "msecs": 727.0, - "relativeCreated": 51602.009474, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Sending message with topic videv/gfw/floor/main_light/color_temp/set and payload 8", - "asctime": "2025-08-22 20:54:49,727" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888889.7296228, - "msecs": 729.0, - "relativeCreated": 51604.432003, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "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-22 20:54:49,729" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888889.729841, - "msecs": 729.0, - "relativeCreated": 51604.650181, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "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-22 20:54:49,729" - }, - { - "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\": 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": 1755888889.730163, - "msecs": 730.0, - "relativeCreated": 51604.972346, - "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\": 413}'", - "asctime": "2025-08-22 20:54:49,730" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888889.7302842, - "msecs": 730.0, - "relativeCreated": 51605.093496, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "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-22 20:54:49,730" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888889.730908, - "msecs": 730.0, - "relativeCreated": 51605.717068, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "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-22 20:54:49,730" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888889.7312047, - "msecs": 731.0, - "relativeCreated": 51606.014068, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "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-22 20:54:49,731" - }, - { - "name": "smart_brain.mqtt.videv.gfw.floor.main_light.color_temp", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/floor/main_light/color_temp", - "b'8'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/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.773296, - "msecs": 773.0, - "relativeCreated": 51648.105291, - "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'8'", - "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 Light.color_temp (gfw.floor.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": 1755888889.8279746, - "msecs": 827.0, - "relativeCreated": 51702.783952, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "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 Light.color_temp (gfw.floor.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": 1755888889.8280275, - "msecs": 828.0, - "relativeCreated": 51702.836723, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Expectation (Value for Light.color_temp (gfw.floor.main_light)): result = 8 ()", - "asctime": "2025-08-22 20:54:49,828" - } - ], - "time_consumption": 3.933906555175781e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "ViDevLight.color_temp (gfw.floor.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": 1755888889.9285238, - "msecs": 928.0, - "relativeCreated": 51803.332967, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "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", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/gfw/floor/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": 1755888889.8281736, - "msecs": 828.0, - "relativeCreated": 51702.982733, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Sending message with topic videv/gfw/floor/main_light/color_temp/set and payload 10", - "asctime": "2025-08-22 20:54:49,828" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1.set", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888889.83077, - "msecs": 830.0, - "relativeCreated": 51705.579119, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "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-22 20:54:49,830" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888889.8309772, - "msecs": 830.0, - "relativeCreated": 51705.786487, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "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-22 20:54:49,830" - }, - { - "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.8313081, - "msecs": 831.0, - "relativeCreated": 51706.117171, - "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,831" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888889.8314316, - "msecs": 831.0, - "relativeCreated": 51706.240795, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "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-22 20:54:49,831" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888889.8319843, - "msecs": 831.0, - "relativeCreated": 51706.793551, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "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-22 20:54:49,831" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888889.8322217, - "msecs": 832.0, - "relativeCreated": 51707.030868, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "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-22 20:54:49,832" - }, - { - "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'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": 1755888889.8742445, - "msecs": 874.0, - "relativeCreated": 51749.053484, - "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'10'", - "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 Light.color_temp (gfw.floor.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": 1755888889.9287837, - "msecs": 928.0, - "relativeCreated": 51803.59286, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "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 Light.color_temp (gfw.floor.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": 1755888889.92885, - "msecs": 928.0, - "relativeCreated": 51803.659085, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Expectation (Value for Light.color_temp (gfw.floor.main_light)): result = 10 ()", - "asctime": "2025-08-22 20:54:49,928" - } - ], - "time_consumption": 3.266334533691406e-05 - } - ], - "time_consumption": 0.807457685470581, - "time_start": "2025-08-22 20:54:49,121", - "time_finished": "2025-08-22 20:54:49,928" - }, - "Light.color_temp (gfw.floor.main_light) -> ViDevLight.color_temp (gfw.floor.main_light)": { - "name": "__tLogger__", - "msg": "Light.color_temp (gfw.floor.main_light) -> ViDevLight.color_temp (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": 1755888889.9290774, - "msecs": 929.0, - "relativeCreated": 51803.886719, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "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": [ - { - "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": 1755888890.0294454, - "msecs": 29.0, - "relativeCreated": 51904.25461, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Prepare: Switching on device", - "asctime": "2025-08-22 20:54:50,029", - "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": 1755888890.1299608, - "msecs": 129.0, - "relativeCreated": 52004.76991, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Prepare: Setting devices to last state 10", - "asctime": "2025-08-22 20:54:50,129", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.gfw.floor.main_light.color_temp.set", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/gfw/floor/main_light/color_temp/set", - "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": 1755888890.0296526, - "msecs": 29.0, - "relativeCreated": 51904.461749, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Sending message with topic videv/gfw/floor/main_light/color_temp/set and payload 10", - "asctime": "2025-08-22 20:54:50,029" - } - ], - "time_consumption": 0.10030817985534668 - }, - { - "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": 1755888890.130353, - "msecs": 130.0, - "relativeCreated": 52005.162131, - "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:50,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": 1755888890.1302507, - "msecs": 130.0, - "relativeCreated": 52005.059926, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Result (Start state (master, slave)): (10, 10) ()", - "asctime": "2025-08-22 20:54:50,130" - }, - { - "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": 1755888890.1303103, - "msecs": 130.0, - "relativeCreated": 52005.119558, - "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:50,130" - } - ], - "time_consumption": 4.267692565917969e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "Light.color_temp (gfw.floor.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": 1755888890.2312806, - "msecs": 231.0, - "relativeCreated": 52106.089898, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "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", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888890.1305282, - "msecs": 130.0, - "relativeCreated": 52005.337433, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "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-22 20:54:50,130" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888890.1308203, - "msecs": 130.0, - "relativeCreated": 52005.629562, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "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-22 20:54:50,130" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888890.131867, - "msecs": 131.0, - "relativeCreated": 52006.67613, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "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-22 20:54:50,131" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888890.132192, - "msecs": 132.0, - "relativeCreated": 52007.001211, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "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-22 20:54:50,132" - }, - { - "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'0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755888890.133828, - "msecs": 133.0, - "relativeCreated": 52008.637011, - "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'0'", - "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 ViDevLight.color_temp (gfw.floor.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": 1755888890.2315001, - "msecs": 231.0, - "relativeCreated": 52106.309257, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "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 ViDevLight.color_temp (gfw.floor.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": 1755888890.2315564, - "msecs": 231.0, - "relativeCreated": 52106.365707, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Expectation (Value for ViDevLight.color_temp (gfw.floor.main_light)): result = 0 ()", - "asctime": "2025-08-22 20:54:50,231" - } - ], - "time_consumption": 4.220008850097656e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "Light.color_temp (gfw.floor.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": 1755888890.3325555, - "msecs": 332.0, - "relativeCreated": 52207.364734, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "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", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888890.2318006, - "msecs": 231.0, - "relativeCreated": 52106.609859, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "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-22 20:54:50,231" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888890.232078, - "msecs": 232.0, - "relativeCreated": 52106.887441, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "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-22 20:54:50,232" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888890.2330115, - "msecs": 233.0, - "relativeCreated": 52107.820646, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "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-22 20:54:50,233" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888890.2333398, - "msecs": 233.0, - "relativeCreated": 52108.149127, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "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-22 20:54:50,233" - }, - { - "name": "smart_brain.mqtt.videv.gfw.floor.main_light.color_temp", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/floor/main_light/color_temp", - "b'2'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755888890.2744505, - "msecs": 274.0, - "relativeCreated": 52149.259653, - "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'2'", - "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 ViDevLight.color_temp (gfw.floor.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": 1755888890.3328044, - "msecs": 332.0, - "relativeCreated": 52207.613629, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "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 ViDevLight.color_temp (gfw.floor.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": 1755888890.3328633, - "msecs": 332.0, - "relativeCreated": 52207.672555, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Expectation (Value for ViDevLight.color_temp (gfw.floor.main_light)): result = 2 ()", - "asctime": "2025-08-22 20:54:50,332" - } - ], - "time_consumption": 6.318092346191406e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "Light.color_temp (gfw.floor.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": 1755888890.4338577, - "msecs": 433.0, - "relativeCreated": 52308.666927, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "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", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888890.333103, - "msecs": 333.0, - "relativeCreated": 52207.912113, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "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-22 20:54:50,333" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888890.3333533, - "msecs": 333.0, - "relativeCreated": 52208.162378, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "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-22 20:54:50,333" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888890.334219, - "msecs": 334.0, - "relativeCreated": 52209.028352, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "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-22 20:54:50,334" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888890.3345969, - "msecs": 334.0, - "relativeCreated": 52209.405974, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "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-22 20:54:50,334" - }, - { - "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'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": 1755888890.375346, - "msecs": 375.0, - "relativeCreated": 52250.155217, - "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'4'", - "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 ViDevLight.color_temp (gfw.floor.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": 1755888890.4340749, - "msecs": 434.0, - "relativeCreated": 52308.884043, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "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 ViDevLight.color_temp (gfw.floor.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": 1755888890.4341893, - "msecs": 434.0, - "relativeCreated": 52308.998575, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Expectation (Value for ViDevLight.color_temp (gfw.floor.main_light)): result = 4 ()", - "asctime": "2025-08-22 20:54:50,434" - } - ], - "time_consumption": 4.4345855712890625e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "Light.color_temp (gfw.floor.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": 1755888890.5351748, - "msecs": 535.0, - "relativeCreated": 52409.984211, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "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", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888890.4344106, - "msecs": 434.0, - "relativeCreated": 52309.21972, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "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-22 20:54:50,434" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888890.4347, - "msecs": 434.0, - "relativeCreated": 52309.509328, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "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-22 20:54:50,434" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888890.4355159, - "msecs": 435.0, - "relativeCreated": 52310.325177, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "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-22 20:54:50,435" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888890.4358637, - "msecs": 435.0, - "relativeCreated": 52310.672989, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "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-22 20:54:50,435" - }, - { - "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'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": 1755888890.4763918, - "msecs": 476.0, - "relativeCreated": 52351.200982, - "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'6'", - "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 ViDevLight.color_temp (gfw.floor.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": 1755888890.5354164, - "msecs": 535.0, - "relativeCreated": 52410.225581, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "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 ViDevLight.color_temp (gfw.floor.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": 1755888890.5354722, - "msecs": 535.0, - "relativeCreated": 52410.281241, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Expectation (Value for ViDevLight.color_temp (gfw.floor.main_light)): result = 6 ()", - "asctime": "2025-08-22 20:54:50,535" - } - ], - "time_consumption": 4.1484832763671875e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "Light.color_temp (gfw.floor.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": 1755888890.6363041, - "msecs": 636.0, - "relativeCreated": 52511.113489, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "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", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888890.5357394, - "msecs": 535.0, - "relativeCreated": 52410.548727, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "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-22 20:54:50,535" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888890.5360034, - "msecs": 536.0, - "relativeCreated": 52410.812674, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "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-22 20:54:50,536" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888890.5369918, - "msecs": 536.0, - "relativeCreated": 52411.801104, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "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-22 20:54:50,536" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888890.5373216, - "msecs": 537.0, - "relativeCreated": 52412.130733, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "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-22 20:54:50,537" - }, - { - "name": "smart_brain.mqtt.videv.gfw.floor.main_light.color_temp", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/gfw/floor/main_light/color_temp", - "b'8'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755888890.5783908, - "msecs": 578.0, - "relativeCreated": 52453.199977, - "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'8'", - "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 ViDevLight.color_temp (gfw.floor.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": 1755888890.6365082, - "msecs": 636.0, - "relativeCreated": 52511.317435, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "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 ViDevLight.color_temp (gfw.floor.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": 1755888890.6365626, - "msecs": 636.0, - "relativeCreated": 52511.371931, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Expectation (Value for ViDevLight.color_temp (gfw.floor.main_light)): result = 8 ()", - "asctime": "2025-08-22 20:54:50,636" - } - ], - "time_consumption": 4.1484832763671875e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "Light.color_temp (gfw.floor.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": 1755888890.737391, - "msecs": 737.0, - "relativeCreated": 52612.200214, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "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", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888890.6368062, - "msecs": 636.0, - "relativeCreated": 52511.615467, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "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-22 20:54:50,636" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888890.6370738, - "msecs": 637.0, - "relativeCreated": 52511.882837, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "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-22 20:54:50,637" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_1", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888890.6377559, - "msecs": 637.0, - "relativeCreated": 52512.565027, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "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-22 20:54:50,637" - }, - { - "name": "smart_brain.mqtt.zigbee_gfw.gfw.floor.main_light_2", - "msg": "Received message with topic %s and payload %s", - "args": [ - "zigbee_gfw/gfw/floor/main_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": 1755888890.6380634, - "msecs": 638.0, - "relativeCreated": 52512.872513, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "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-22 20:54:50,638" - }, - { - "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'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": 1755888890.679397, - "msecs": 679.0, - "relativeCreated": 52554.206403, - "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'10'", - "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 ViDevLight.color_temp (gfw.floor.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": 1755888890.7376046, - "msecs": 737.0, - "relativeCreated": 52612.413792, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "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 ViDevLight.color_temp (gfw.floor.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": 1755888890.737681, - "msecs": 737.0, - "relativeCreated": 52612.490238, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Expectation (Value for ViDevLight.color_temp (gfw.floor.main_light)): result = 10 ()", - "asctime": "2025-08-22 20:54:50,737" - } - ], - "time_consumption": 4.2438507080078125e-05 - } - ], - "time_consumption": 0.8086459636688232, - "time_start": "2025-08-22 20:54:49,929", - "time_finished": "2025-08-22 20:54:50,737" - }, - "ViDevLight.state (stw.stairway.main_light) -> Shelly.relay/0 (stw.firstfloor.main_light)": { - "name": "__tLogger__", - "msg": "ViDevLight.state (stw.stairway.main_light) -> Shelly.relay/0 (stw.firstfloor.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": 1755888890.7379513, - "msecs": 737.0, - "relativeCreated": 52612.760559, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "ViDevLight.state (stw.stairway.main_light) -> Shelly.relay/0 (stw.firstfloor.main_light)", - "asctime": "2025-08-22 20:54:50,737", - "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": 1755888890.838584, - "msecs": 838.0, - "relativeCreated": 52713.393211, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Prepare: Setting devices to last state False", - "asctime": "2025-08-22 20:54:50,838", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.stw.stairway.main_light.state.set", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/stw/stairway/main_light/state/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": 1755888890.738081, - "msecs": 738.0, - "relativeCreated": 52612.890213, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Sending message with topic videv/stw/stairway/main_light/state/set and payload false", - "asctime": "2025-08-22 20:54:50,738" - } - ], - "time_consumption": 0.10050296783447266 - }, - { - "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": 1755888890.8389773, - "msecs": 838.0, - "relativeCreated": 52713.7866, - "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:50,838", - "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": 1755888890.8388753, - "msecs": 838.0, - "relativeCreated": 52713.684751, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Result (Start state (master, slave)): (False, False) ()", - "asctime": "2025-08-22 20:54:50,838" - }, - { - "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": 1755888890.8389356, - "msecs": 838.0, - "relativeCreated": 52713.744754, - "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:50,838" - } - ], - "time_consumption": 4.172325134277344e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "ViDevLight.state (stw.stairway.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": 1755888890.9394825, - "msecs": 939.0, - "relativeCreated": 52814.291694, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "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", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/stw/stairway/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": 1755888890.8390915, - "msecs": 839.0, - "relativeCreated": 52713.900634, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Sending message with topic videv/stw/stairway/main_light/state/set and payload true", - "asctime": "2025-08-22 20:54:50,839" - }, - { - "name": "smart_brain.mqtt.shellies.stw.firstfloor.main_light.relay.0.command", - "msg": "Received message with topic %s and payload %s", - "args": [ - "shellies/stw/firstfloor/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": 1755888890.8414352, - "msecs": 841.0, - "relativeCreated": 52716.244447, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Received message with topic shellies/stw/firstfloor/main_light/relay/0/command and payload b'on'", - "asctime": "2025-08-22 20:54:50,841" - }, - { - "name": "smart_brain.mqtt.shellies.stw.firstfloor.main_light.relay.0", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "shellies/stw/firstfloor/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": 1755888890.841699, - "msecs": 841.0, - "relativeCreated": 52716.508165, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Sending message with topic shellies/stw/firstfloor/main_light/relay/0 and payload on", - "asctime": "2025-08-22 20:54:50,841" - }, - { - "name": "smart_brain.mqtt.shellies.stw.firstfloor.main_light.relay.0", - "msg": "Received message with topic %s and payload %s", - "args": [ - "shellies/stw/firstfloor/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": 1755888890.8422167, - "msecs": 842.0, - "relativeCreated": 52717.025887, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Received message with topic shellies/stw/firstfloor/main_light/relay/0 and payload b'on'", - "asctime": "2025-08-22 20:54:50,842" - }, - { - "name": "smart_brain.mqtt.videv.stw.stairway.main_light.timer", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/stw/stairway/main_light/timer", - "b'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": 1755888890.884101, - "msecs": 884.0, - "relativeCreated": 52758.910185, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Received message with topic videv/stw/stairway/main_light/timer and payload b'100'", - "asctime": "2025-08-22 20:54:50,884" - }, - { - "name": "smart_brain.mqtt.videv.stw.stairway.main_light.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/stw/stairway/main_light/state", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755888890.9245174, - "msecs": 924.0, - "relativeCreated": 52799.326511, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Received message with topic videv/stw/stairway/main_light/state and payload b'true'", - "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.relay/0 (stw.firstfloor.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": 1755888890.9397542, - "msecs": 939.0, - "relativeCreated": 52814.563431, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "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.relay/0 (stw.firstfloor.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": 1755888890.9398167, - "msecs": 939.0, - "relativeCreated": 52814.625828, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Expectation (Value for Shelly.relay/0 (stw.firstfloor.main_light)): result = True ()", - "asctime": "2025-08-22 20:54:50,939" - } - ], - "time_consumption": 4.172325134277344e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "ViDevLight.state (stw.stairway.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": 1755888891.0403087, - "msecs": 40.0, - "relativeCreated": 52915.118076, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "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", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/stw/stairway/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": 1755888890.9399638, - "msecs": 939.0, - "relativeCreated": 52814.773143, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Sending message with topic videv/stw/stairway/main_light/state/set and payload false", - "asctime": "2025-08-22 20:54:50,939" - }, - { - "name": "smart_brain.mqtt.shellies.stw.firstfloor.main_light.relay.0.command", - "msg": "Received message with topic %s and payload %s", - "args": [ - "shellies/stw/firstfloor/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": 1755888890.9423282, - "msecs": 942.0, - "relativeCreated": 52817.137681, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Received message with topic shellies/stw/firstfloor/main_light/relay/0/command and payload b'off'", - "asctime": "2025-08-22 20:54:50,942" - }, - { - "name": "smart_brain.mqtt.shellies.stw.firstfloor.main_light.relay.0", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "shellies/stw/firstfloor/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": 1755888890.9425673, - "msecs": 942.0, - "relativeCreated": 52817.376716, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Sending message with topic shellies/stw/firstfloor/main_light/relay/0 and payload off", - "asctime": "2025-08-22 20:54:50,942" - }, - { - "name": "smart_brain.mqtt.shellies.stw.firstfloor.main_light.relay.0", - "msg": "Received message with topic %s and payload %s", - "args": [ - "shellies/stw/firstfloor/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": 1755888890.9433007, - "msecs": 943.0, - "relativeCreated": 52818.109823, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Received message with topic shellies/stw/firstfloor/main_light/relay/0 and payload b'off'", - "asctime": "2025-08-22 20:54:50,943" - }, - { - "name": "smart_brain.mqtt.shellies.stw.firstfloor.main_light.relay.0.command", - "msg": "Received message with topic %s and payload %s", - "args": [ - "shellies/stw/firstfloor/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": 1755888890.9857602, - "msecs": 985.0, - "relativeCreated": 52860.569605, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Received message with topic shellies/stw/firstfloor/main_light/relay/0/command and payload b'off'", - "asctime": "2025-08-22 20:54:50,985" - }, - { - "name": "smart_brain.mqtt.videv.stw.stairway.main_light.timer", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/stw/stairway/main_light/timer", - "b'0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755888890.9861643, - "msecs": 986.0, - "relativeCreated": 52860.97339, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Received message with topic videv/stw/stairway/main_light/timer and payload b'0'", - "asctime": "2025-08-22 20:54:50,986" - }, - { - "name": "smart_brain.mqtt.videv.stw.stairway.main_light.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/stw/stairway/main_light/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755888890.9864457, - "msecs": 986.0, - "relativeCreated": 52861.254888, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Received message with topic videv/stw/stairway/main_light/state and payload b'false'", - "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.relay/0 (stw.firstfloor.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": 1755888891.0405054, - "msecs": 40.0, - "relativeCreated": 52915.314572, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "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.relay/0 (stw.firstfloor.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": 1755888891.0405622, - "msecs": 40.0, - "relativeCreated": 52915.37141, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Expectation (Value for Shelly.relay/0 (stw.firstfloor.main_light)): result = False ()", - "asctime": "2025-08-22 20:54:51,040" - } - ], - "time_consumption": 4.029273986816406e-05 - } - ], - "time_consumption": 0.30265116691589355, - "time_start": "2025-08-22 20:54:50,737", - "time_finished": "2025-08-22 20:54:51,040" - }, - "Shelly.relay/0 (stw.firstfloor.main_light) -> ViDevLight.state (stw.stairway.main_light)": { - "name": "__tLogger__", - "msg": "Shelly.relay/0 (stw.firstfloor.main_light) -> ViDevLight.state (stw.stairway.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": 1755888891.0407984, - "msecs": 40.0, - "relativeCreated": 52915.607737, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Shelly.relay/0 (stw.firstfloor.main_light) -> ViDevLight.state (stw.stairway.main_light)", - "asctime": "2025-08-22 20:54:51,040", - "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": 1755888891.141257, - "msecs": 141.0, - "relativeCreated": 53016.066212, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Prepare: Setting devices to last state False", - "asctime": "2025-08-22 20:54:51,141", - "moduleLogger": [ - { - "name": "smart_brain.mqtt.videv.stw.stairway.main_light.state.set", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "videv/stw/stairway/main_light/state/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": 1755888891.0409122, - "msecs": 40.0, - "relativeCreated": 52915.721438, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "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.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": 1755888891.1416228, - "msecs": 141.0, - "relativeCreated": 53016.431894, - "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:51,141", - "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": 1755888891.1414933, - "msecs": 141.0, - "relativeCreated": 53016.30251, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Result (Start state (master, slave)): (False, False) ()", - "asctime": "2025-08-22 20:54:51,141" - }, - { - "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": 1755888891.1415796, - "msecs": 141.0, - "relativeCreated": 53016.38886, - "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:51,141" - } - ], - "time_consumption": 4.315376281738281e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "Shelly.relay/0 (stw.firstfloor.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": 1755888891.2422938, - "msecs": 242.0, - "relativeCreated": 53117.103029, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "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", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "shellies/stw/firstfloor/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": 1755888891.1417792, - "msecs": 141.0, - "relativeCreated": 53016.588394, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Sending message with topic shellies/stw/firstfloor/main_light/relay/0 and payload on", - "asctime": "2025-08-22 20:54:51,141" - }, - { - "name": "smart_brain.mqtt.shellies.stw.firstfloor.main_light.relay.0", - "msg": "Received message with topic %s and payload %s", - "args": [ - "shellies/stw/firstfloor/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": 1755888891.1428711, - "msecs": 142.0, - "relativeCreated": 53017.680277, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Received message with topic shellies/stw/firstfloor/main_light/relay/0 and payload b'on'", - "asctime": "2025-08-22 20:54:51,142" - }, - { - "name": "smart_brain.mqtt.videv.stw.stairway.main_light.timer", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/stw/stairway/main_light/timer", - "b'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": 1755888891.144599, - "msecs": 144.0, - "relativeCreated": 53019.408167, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Received message with topic videv/stw/stairway/main_light/timer and payload b'100'", - "asctime": "2025-08-22 20:54:51,144" - }, - { - "name": "smart_brain.mqtt.videv.stw.stairway.main_light.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/stw/stairway/main_light/state", - "b'true'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755888891.1449873, - "msecs": 144.0, - "relativeCreated": 53019.796573, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Received message with topic videv/stw/stairway/main_light/state and payload b'true'", - "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 ViDevLight.state (stw.stairway.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": 1755888891.2425215, - "msecs": 242.0, - "relativeCreated": 53117.33085, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "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 ViDevLight.state (stw.stairway.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": 1755888891.2425795, - "msecs": 242.0, - "relativeCreated": 53117.388628, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Expectation (Value for ViDevLight.state (stw.stairway.main_light)): result = True ()", - "asctime": "2025-08-22 20:54:51,242" - } - ], - "time_consumption": 4.220008850097656e-05 - }, - { - "name": "__tLogger__", - "msg": "Setting state of %s to %s", - "args": [ - "Shelly.relay/0 (stw.firstfloor.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": 1755888891.343345, - "msecs": 343.0, - "relativeCreated": 53218.154062, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "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", - "msg": "Sending message with topic %s and payload %s", - "args": [ - "shellies/stw/firstfloor/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": 1755888891.2427962, - "msecs": 242.0, - "relativeCreated": 53117.605527, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Sending message with topic shellies/stw/firstfloor/main_light/relay/0 and payload off", - "asctime": "2025-08-22 20:54:51,242" - }, - { - "name": "smart_brain.mqtt.shellies.stw.firstfloor.main_light.relay.0", - "msg": "Received message with topic %s and payload %s", - "args": [ - "shellies/stw/firstfloor/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": 1755888891.2440405, - "msecs": 244.0, - "relativeCreated": 53118.849638, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Received message with topic shellies/stw/firstfloor/main_light/relay/0 and payload b'off'", - "asctime": "2025-08-22 20:54:51,244" - }, - { - "name": "smart_brain.mqtt.shellies.stw.firstfloor.main_light.relay.0.command", - "msg": "Received message with topic %s and payload %s", - "args": [ - "shellies/stw/firstfloor/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": 1755888891.2458985, - "msecs": 245.0, - "relativeCreated": 53120.707658, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Received message with topic shellies/stw/firstfloor/main_light/relay/0/command and payload b'off'", - "asctime": "2025-08-22 20:54:51,245" - }, - { - "name": "smart_brain.mqtt.videv.stw.stairway.main_light.timer", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/stw/stairway/main_light/timer", - "b'0'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755888891.2462387, - "msecs": 246.0, - "relativeCreated": 53121.04789, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Received message with topic videv/stw/stairway/main_light/timer and payload b'0'", - "asctime": "2025-08-22 20:54:51,246" - }, - { - "name": "smart_brain.mqtt.videv.stw.stairway.main_light.state", - "msg": "Received message with topic %s and payload %s", - "args": [ - "videv/stw/stairway/main_light/state", - "b'false'" - ], - "levelname": "DEBUG", - "levelno": 10, - "pathname": "/home/dirk/work/smarthome_collection/smart_brain_test/mqtt/__init__.py", - "filename": "__init__.py", - "module": "__init__", - "exc_text": null, - "stack_info": null, - "lineno": 92, - "funcName": "__receive__", - "created": 1755888891.2465384, - "msecs": 246.0, - "relativeCreated": 53121.347845, - "thread": 133814225516224, - "threadName": "paho-mqtt-client-", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Received message with topic videv/stw/stairway/main_light/state and payload b'false'", - "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 ViDevLight.state (stw.stairway.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": 1755888891.3435705, - "msecs": 343.0, - "relativeCreated": 53218.379761, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "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 ViDevLight.state (stw.stairway.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": 1755888891.3436272, - "msecs": 343.0, - "relativeCreated": 53218.436552, - "thread": 133814251192576, - "threadName": "MainThread", - "processName": "MainProcess", - "process": 1942956, - "taskName": null, - "message": "Expectation (Value for ViDevLight.state (stw.stairway.main_light)): result = False ()", - "asctime": "2025-08-22 20:54:51,343" - } - ], - "time_consumption": 7.700920104980469e-05 - } - ], - "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", - "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)" - ] - } - ] -} \ No newline at end of file diff --git a/testresults/testrun.pdf b/testresults/testrun.pdf deleted file mode 100644 index ee36f44..0000000 Binary files a/testresults/testrun.pdf and /dev/null differ diff --git a/tests/rooms.py b/tests/rooms.py index d9d1700..7b85e67 100644 --- a/tests/rooms.py +++ b/tests/rooms.py @@ -1,4 +1,5 @@ import config +import random import report import time @@ -10,6 +11,10 @@ from .help import STATES_SW, STATES_BR, STATES_CT, STATES_TEMP from tests.common_testcases import device_follow +def rand_tcel(): + return random.choice(5 * [report.TCEL_FULL] + 3 * [report.TCEL_SHORT] + 2 * [report.TCEL_SMOKE]) + + 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) @@ -19,7 +24,7 @@ def device_follow_sw(ts, master, slave, master_ch=0, slave_ch=0, single=False): # testcase_id = master_name + " -> " + slave_name ts.testCase( - testcase_id, report.TCEL_SINGLE if single else report.TCEL_SMOKE, device_follow, + testcase_id, report.TCEL_SINGLE if single else rand_tcel(), device_follow, master, master_key, slave, slave_key, STATES_SW, None @@ -32,7 +37,7 @@ def device_follow_br(ts, master, slave, switch_on=None, single=False): # testcase_id = master_name + " -> " + slave_name ts.testCase( - testcase_id, report.TCEL_SINGLE if single else report.TCEL_SMOKE, device_follow, + testcase_id, report.TCEL_SINGLE if single else rand_tcel(), device_follow, master, master.KEY_BRIGHTNESS, slave, slave.KEY_BRIGHTNESS, STATES_BR, switch_on @@ -45,7 +50,7 @@ def device_follow_ct(ts, master, slave, switch_on=None, single=False): # testcase_id = master_name + " -> " + slave_name ts.testCase( - testcase_id, report.TCEL_SINGLE if single else report.TCEL_SMOKE, device_follow, + testcase_id, report.TCEL_SINGLE if single else rand_tcel(), device_follow, master, master.KEY_COLOR_TEMP, slave, slave.KEY_COLOR_TEMP, STATES_CT, switch_on @@ -58,7 +63,7 @@ def device_follow_temp(ts, master, slave, single=False): # testcase_id = master_name + " -> " + slave_name ts.testCase( - testcase_id, report.TCEL_SINGLE if single else report.TCEL_SMOKE, device_follow, + testcase_id, report.TCEL_SINGLE if single else rand_tcel(), device_follow, master, master.KEY_USER_TEMPERATURE_SETPOINT, slave, slave.KEY_TEMPERATURE_SETPOINT, STATES_TEMP, None @@ -269,18 +274,18 @@ def gfw(ts: testSession, mc: mqtt_client, h: house): device_follow_sw(ts, room.videv_pc_dock, room.switch_pc_dock) device_follow_sw(ts, room.switch_pc_dock, room.videv_pc_dock) # powerplug videv <-> channel - 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_bluetooth, room.my_powerplug, slave_ch=3) - device_follow_sw(ts, room.my_powerplug, room.videv_bluetooth, master_ch=3) + device_follow_sw(ts, room.videv_amplifier, room.switch_powerplug_4, slave_ch=0) + device_follow_sw(ts, room.switch_powerplug_4, room.videv_amplifier, master_ch=0) + device_follow_sw(ts, room.videv_phono, room.switch_powerplug_4, slave_ch=1) + device_follow_sw(ts, room.switch_powerplug_4, room.videv_phono, master_ch=1) + device_follow_sw(ts, room.videv_cd_player, room.switch_powerplug_4, slave_ch=2) + device_follow_sw(ts, room.switch_powerplug_4, room.videv_cd_player, master_ch=2) + device_follow_sw(ts, room.videv_bluetooth, room.switch_powerplug_4, slave_ch=3) + device_follow_sw(ts, room.switch_powerplug_4, room.videv_bluetooth, master_ch=3) # powerplug follow - 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) + device_follow_sw(ts, room.switch_powerplug_4, room.switch_powerplug_4, master_ch=1, slave_ch=0) + device_follow_sw(ts, room.switch_powerplug_4, room.switch_powerplug_4, master_ch=2, slave_ch=0) + device_follow_sw(ts, room.switch_powerplug_4, room.switch_powerplug_4, master_ch=3, slave_ch=0) # Brightness and Colortemperature #################### device_follow_br(ts, room.videv_main_light, room.light_main_light, room.switch_main_light) device_follow_br(ts, room.light_main_light, room.videv_main_light, room.switch_main_light) diff --git a/unittest b/unittest index e5282ac..e307314 160000 --- a/unittest +++ b/unittest @@ -1 +1 @@ -Subproject commit e5282ac16addbe4d6e59f4a7accaac6b73b469ee +Subproject commit e3073141d24c0cd4681b6c57a0967a5506fb35e8