diff --git a/__init__.py b/__init__.py index fd642e5..d4a22ed 100644 --- a/__init__.py +++ b/__init__.py @@ -72,6 +72,7 @@ class state_machine(object): self.__state_change_callbacks__ = {} self.__log_lvl__ = log_lvl self.__set_state__(default_state, '__init__') + self.__callback_id__ = 0 for key in kwargs: setattr(self, key, kwargs.get(key)) @@ -91,7 +92,8 @@ class state_machine(object): self.__state_change_callbacks__[state] = {} if condition not in self.__state_change_callbacks__[state]: self.__state_change_callbacks__[state][condition] = [] - self.__state_change_callbacks__[state][condition].append((callback, args, kwargs)) + self.__state_change_callbacks__[state][condition].append((self.__callback_id__, callback, args, kwargs)) + self.__callback_id__ += 1 def this_state(self): """ @@ -182,13 +184,16 @@ class state_machine(object): self.__last_transition_condition__ = condition self.__time_stamp_state_change__ = timestamp self.__conditions_start_time__ = {} - for callback, args, kwargs in self.__state_change_callbacks__.get(None, {}).get(None, []): - callback(*args, **kwargs) - for callback, args, kwargs in self.__state_change_callbacks__.get(target_state, {}).get(None, []): - callback(*args, **kwargs) - for callback, args, kwargs in self.__state_change_callbacks__.get(None, {}).get(condition, []): - callback(*args, **kwargs) - for callback, args, kwargs in self.__state_change_callbacks__.get(target_state, {}).get(condition, []): + # Callback collect + this_state_change_callbacks = self.__state_change_callbacks__.get(None, {}).get(None, []) + this_state_change_callbacks.extend(self.__state_change_callbacks__.get(target_state, {}).get(None, [])) + this_state_change_callbacks.extend(self.__state_change_callbacks__.get(None, {}).get(condition, [])) + this_state_change_callbacks.extend(self.__state_change_callbacks__.get(target_state, {}).get(condition, [])) + # Callback sorting + this_state_change_callbacks.sort() + # Callback execution + for cid, callback, args, kwargs in this_state_change_callbacks: + logger.debug('Executing callback %d - %s.%s', cid, callback.__module__, callback.__name__) callback(*args, **kwargs) def work(self): diff --git a/_testresults_/unittest.json b/_testresults_/unittest.json index 0350720..d29be9b 100644 --- a/_testresults_/unittest.json +++ b/_testresults_/unittest.json @@ -2,11 +2,11 @@ "coverage_information": [ { "branch_coverage": 100.0, - "filepath": "/user_data/data/dirk/prj/modules/state_machine/pylibs/state_machine", + "filepath": "/user_data/data/dirk/prj/unittest/state_machine/pylibs/state_machine", "files": [ { "branch_coverage": 100.0, - "filepath": "/user_data/data/dirk/prj/modules/state_machine/pylibs/state_machine/__init__.py", + "filepath": "/user_data/data/dirk/prj/unittest/state_machine/pylibs/state_machine/__init__.py", "fragments": [ { "coverage_state": "clean", @@ -95,53 +95,43 @@ }, { "coverage_state": "covered", - "end": 76, + "end": 77, "start": 68 }, { "coverage_state": "clean", - "end": 77, - "start": 77 - }, - { - "coverage_state": "covered", "end": 78, "start": 78 }, { - "coverage_state": "clean", - "end": 89, + "coverage_state": "covered", + "end": 79, "start": 79 }, - { - "coverage_state": "covered", - "end": 94, - "start": 90 - }, { "coverage_state": "clean", - "end": 95, - "start": 95 + "end": 90, + "start": 80 }, { "coverage_state": "covered", "end": 96, - "start": 96 + "start": 91 }, { "coverage_state": "clean", - "end": 101, + "end": 97, "start": 97 }, { "coverage_state": "covered", - "end": 102, - "start": 102 + "end": 98, + "start": 98 }, { "coverage_state": "clean", "end": 103, - "start": 103 + "start": 99 }, { "coverage_state": "covered", @@ -150,18 +140,18 @@ }, { "coverage_state": "clean", - "end": 112, + "end": 105, "start": 105 }, { "coverage_state": "covered", - "end": 113, - "start": 113 + "end": 106, + "start": 106 }, { "coverage_state": "clean", "end": 114, - "start": 114 + "start": 107 }, { "coverage_state": "covered", @@ -170,18 +160,18 @@ }, { "coverage_state": "clean", - "end": 121, + "end": 116, "start": 116 }, { "coverage_state": "covered", - "end": 122, - "start": 122 + "end": 117, + "start": 117 }, { "coverage_state": "clean", "end": 123, - "start": 123 + "start": 118 }, { "coverage_state": "covered", @@ -190,18 +180,18 @@ }, { "coverage_state": "clean", - "end": 130, + "end": 125, "start": 125 }, { "coverage_state": "covered", - "end": 131, - "start": 131 + "end": 126, + "start": 126 }, { "coverage_state": "clean", "end": 132, - "start": 132 + "start": 127 }, { "coverage_state": "covered", @@ -210,18 +200,18 @@ }, { "coverage_state": "clean", - "end": 141, + "end": 134, "start": 134 }, { "coverage_state": "covered", - "end": 142, - "start": 142 + "end": 135, + "start": 135 }, { "coverage_state": "clean", "end": 143, - "start": 143 + "start": 136 }, { "coverage_state": "covered", @@ -230,18 +220,18 @@ }, { "coverage_state": "clean", - "end": 150, + "end": 145, "start": 145 }, { "coverage_state": "covered", - "end": 151, - "start": 151 + "end": 146, + "start": 146 }, { "coverage_state": "clean", "end": 152, - "start": 152 + "start": 147 }, { "coverage_state": "covered", @@ -250,18 +240,18 @@ }, { "coverage_state": "clean", - "end": 161, + "end": 154, "start": 154 }, { "coverage_state": "covered", - "end": 162, - "start": 162 + "end": 155, + "start": 155 }, { "coverage_state": "clean", "end": 163, - "start": 163 + "start": 156 }, { "coverage_state": "covered", @@ -270,68 +260,98 @@ }, { "coverage_state": "clean", - "end": 170, + "end": 165, "start": 165 }, { "coverage_state": "covered", - "end": 171, - "start": 171 + "end": 166, + "start": 166 }, { "coverage_state": "clean", "end": 172, - "start": 172 + "start": 167 }, { "coverage_state": "covered", - "end": 178, + "end": 173, "start": 173 }, { "coverage_state": "clean", - "end": 179, - "start": 179 + "end": 174, + "start": 174 }, { "coverage_state": "covered", - "end": 192, - "start": 180 + "end": 180, + "start": 175 }, { "coverage_state": "clean", - "end": 193, - "start": 193 + "end": 181, + "start": 181 }, { "coverage_state": "covered", - "end": 194, - "start": 194 + "end": 186, + "start": 182 + }, + { + "coverage_state": "clean", + "end": 187, + "start": 187 + }, + { + "coverage_state": "covered", + "end": 191, + "start": 188 + }, + { + "coverage_state": "clean", + "end": 192, + "start": 192 + }, + { + "coverage_state": "covered", + "end": 196, + "start": 193 }, { "coverage_state": "clean", "end": 197, - "start": 195 + "start": 197 }, { "coverage_state": "covered", - "end": 209, + "end": 198, "start": 198 }, { "coverage_state": "clean", - "end": 210, - "start": 210 + "end": 201, + "start": 199 }, { "coverage_state": "covered", - "end": 215, - "start": 211 + "end": 213, + "start": 202 + }, + { + "coverage_state": "clean", + "end": 214, + "start": 214 + }, + { + "coverage_state": "covered", + "end": 219, + "start": 215 }, { "coverage_state": "clean", "end": null, - "start": 216 + "start": 220 } ], "line_coverage": 100.0, @@ -447,6 +467,17 @@ "system_uid": "_P7R34HczEemrUqotql_Blw", "xml_tag": "{http://www.omg.org/spec/ReqIF/20110401/reqif.xsd}SPEC-OBJECT" }, + "_QofFgK-aEeqZm7ouFR1drQ": { + "Description": "The callbacks shall be executed in the same order as they had been registered.", + "Fitcriterion": "A callback with specific targetstate and condition will be executed before a non specific callback if the specific one had been regestered first.", + "Heading": "Execution order of Callbacks", + "ID": "REQ-20", + "ReasonForImplementation": "User shall have the control about the execution order.", + "last_change": "2020-06-16T08:34:38.134+02:00", + "system_type_uid": "_MR7eNHYYEem_kd-7nxt1sg", + "system_uid": "_QofFgK-aEeqZm7ouFR1drQ", + "xml_tag": "{http://www.omg.org/spec/ReqIF/20110401/reqif.xsd}SPEC-OBJECT" + }, "_RnPZgHcqEemrUqotql_Blw": { "Heading": "Module Interface", "last_change": "2019-05-15T19:44:08.696+02:00", @@ -611,16 +642,17 @@ "_XzMFcHYZEem_kd-7nxt1sg", "_YrdgQHbUEemIm_1APUisDQ", "_b_t78Hb4EemzkK7kGUMNfw", - "_e4QPUHb4EemzkK7kGUMNfw" + "_e4QPUHb4EemzkK7kGUMNfw", + "_QofFgK-aEeqZm7ouFR1drQ" ] }, "system_information": { "Architecture": "64bit", "Distribution": "LinuxMint 19.3 tricia", "Hostname": "ahorn", - "Kernel": "5.0.0-37-generic (#40~18.04.1-Ubuntu SMP Thu Nov 14 12:06:39 UTC 2019)", + "Kernel": "5.3.0-59-generic (#53~18.04.1-Ubuntu SMP Thu Jun 4 14:58:26 UTC 2020)", "Machine": "x86_64", - "Path": "/user_data/data/dirk/prj/modules/state_machine/unittest", + "Path": "/user_data/data/dirk/prj/unittest/state_machine/unittest", "System": "Linux", "Username": "dirk" }, @@ -630,7 +662,7 @@ "Name": "state_machine", "State": "Released", "Supported Interpreters": "python2, python3", - "Version": "62acd0029b6217cb4a2151caafb560a7" + "Version": "9884b22fc1e8af73e10e88e52951e585" }, "testrun_list": [ { @@ -645,6 +677,7 @@ "_MR7eOHYYEem_kd-7nxt1sg": "Transition Callbacks", "_N_VvoHczEemrUqotql_Blw": "Transition Changes", "_P7R34HczEemrUqotql_Blw": "Transitiondefinition and -flow", + "_QofFgK-aEeqZm7ouFR1drQ": "Execution order of Callbacks", "_RnPZgHcqEemrUqotql_Blw": "Module Interface", "_XzMFcHYZEem_kd-7nxt1sg": "State change callback for a defined transition and targetstate", "_YrdgQHbUEemIm_1APUisDQ": "State change callback for a defined transition", @@ -663,8 +696,8 @@ "name": "Default Testsession name", "number_of_failed_tests": 0, "number_of_possibly_failed_tests": 0, - "number_of_successfull_tests": 19, - "number_of_tests": 19, + "number_of_successfull_tests": 20, + "number_of_tests": 20, "testcase_execution_level": 90, "testcase_names": { "0": "Single Test", @@ -675,8 +708,8 @@ "testcases": { "_-kytMHcyEemrUqotql_Blw": { "args": null, - "asctime": "2019-12-27 08:39:28,280", - "created": 1577432368.280073, + "asctime": "2020-06-16 09:01:50,915", + "created": 1592290910.91599, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -687,18 +720,18 @@ "message": "_-kytMHcyEemrUqotql_Blw", "module": "__init__", "moduleLogger": [], - "msecs": 280.0729274749756, + "msecs": 915.9901142120361, "msg": "_-kytMHcyEemrUqotql_Blw", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/__init__.py", - "process": 8622, + "pathname": "/user_data/data/dirk/prj/unittest/state_machine/unittest/src/tests/__init__.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 915.0149822235107, + "relativeCreated": 945.1611042022705, "testcaseLogger": [ { "args": [], - "asctime": "2019-12-27 08:39:28,280", - "created": 1577432368.280732, + "asctime": "2020-06-16 09:01:50,916", + "created": 1592290910.916323, "exc_info": null, "exc_text": null, "filename": "test_interface.py", @@ -716,25 +749,25 @@ "None", "'state_a'" ], - "asctime": "2019-12-27 08:39:28,280", - "created": 1577432368.280329, + "asctime": "2020-06-16 09:01:50,916", + "created": 1592290910.916119, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__set_state__", "levelname": "DEBUG", "levelno": 10, - "lineno": 174, + "lineno": 176, "message": "StateMachine: State change ('__init__'): None -> 'state_a'", "module": "__init__", - "msecs": 280.32898902893066, + "msecs": 916.1190986633301, "msg": "%s State change (%s): %s -> %s", "name": "STATE_MACHINE", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/state_machine/__init__.py", - "process": 8622, + "pathname": "src/state_machine/__init__.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 915.2710437774658, - "thread": 140570112038720, + "relativeCreated": 945.2900886535645, + "thread": 139834866980672, "threadName": "MainThread" }, { @@ -744,46 +777,46 @@ "'state_a'", "'state_b'" ], - "asctime": "2019-12-27 08:39:28,280", - "created": 1577432368.280567, + "asctime": "2020-06-16 09:01:50,916", + "created": 1592290910.916241, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__set_state__", "levelname": "DEBUG", "levelno": 10, - "lineno": 174, + "lineno": 176, "message": "StateMachine: State change ('condition_a'): 'state_a' -> 'state_b'", "module": "__init__", - "msecs": 280.566930770874, + "msecs": 916.240930557251, "msg": "%s State change (%s): %s -> %s", "name": "STATE_MACHINE", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/state_machine/__init__.py", - "process": 8622, + "pathname": "src/state_machine/__init__.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 915.5089855194092, - "thread": 140570112038720, + "relativeCreated": 945.4119205474854, + "thread": 139834866980672, "threadName": "MainThread" } ], - "msecs": 280.7319164276123, + "msecs": 916.3229465484619, "msg": "Running state machine test sequence.", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_interface.py", - "process": 8622, + "pathname": "src/tests/test_interface.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 915.6739711761475, - "thread": 140570112038720, + "relativeCreated": 945.4939365386963, + "thread": 139834866980672, "threadName": "MainThread", - "time_consumption": 0.00016498565673828125 + "time_consumption": 8.20159912109375e-05 }, { "args": [ "'state_a'", "" ], - "asctime": "2019-12-27 08:39:28,281", - "created": 1577432368.281816, + "asctime": "2020-06-16 09:01:50,916", + "created": 1592290910.916587, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -800,8 +833,8 @@ "'state_a'", "" ], - "asctime": "2019-12-27 08:39:28,281", - "created": 1577432368.281468, + "asctime": "2020-06-16 09:01:50,916", + "created": 1592290910.916444, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -811,14 +844,14 @@ "lineno": 22, "message": "Result (Returnvalue of previous_state()): 'state_a' ()", "module": "test", - "msecs": 281.4679145812988, + "msecs": 916.4440631866455, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 916.409969329834, - "thread": 140570112038720, + "relativeCreated": 945.6150531768799, + "thread": 139834866980672, "threadName": "MainThread" }, { @@ -827,8 +860,8 @@ "'state_a'", "" ], - "asctime": "2019-12-27 08:39:28,281", - "created": 1577432368.281652, + "asctime": "2020-06-16 09:01:50,916", + "created": 1592290910.916515, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -838,39 +871,39 @@ "lineno": 26, "message": "Expectation (Returnvalue of previous_state()): result = 'state_a' ()", "module": "test", - "msecs": 281.65197372436523, + "msecs": 916.5151119232178, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 916.5940284729004, - "thread": 140570112038720, + "relativeCreated": 945.6861019134521, + "thread": 139834866980672, "threadName": "MainThread" } ], - "msecs": 281.8160057067871, + "msecs": 916.5871143341064, "msg": "Returnvalue of previous_state() is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 916.7580604553223, - "thread": 140570112038720, + "relativeCreated": 945.7581043243408, + "thread": 139834866980672, "threadName": "MainThread", - "time_consumption": 0.000164031982421875 + "time_consumption": 7.200241088867188e-05 } ], - "thread": 140570112038720, + "thread": 139834866980672, "threadName": "MainThread", - "time_consumption": 0.0017430782318115234, - "time_finished": "2019-12-27 08:39:28,281", - "time_start": "2019-12-27 08:39:28,280" + "time_consumption": 0.0005970001220703125, + "time_finished": "2020-06-16 09:01:50,916", + "time_start": "2020-06-16 09:01:50,915" }, "_1WGwEHcyEemrUqotql_Blw": { "args": null, - "asctime": "2019-12-27 08:39:28,276", - "created": 1577432368.276143, + "asctime": "2020-06-16 09:01:50,914", + "created": 1592290910.914091, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -881,18 +914,18 @@ "message": "_1WGwEHcyEemrUqotql_Blw", "module": "__init__", "moduleLogger": [], - "msecs": 276.14307403564453, + "msecs": 914.0911102294922, "msg": "_1WGwEHcyEemrUqotql_Blw", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/__init__.py", - "process": 8622, + "pathname": "/user_data/data/dirk/prj/unittest/state_machine/unittest/src/tests/__init__.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 911.0851287841797, + "relativeCreated": 943.2621002197266, "testcaseLogger": [ { "args": [], - "asctime": "2019-12-27 08:39:28,276", - "created": 1577432368.276886, + "asctime": "2020-06-16 09:01:50,914", + "created": 1592290910.914461, "exc_info": null, "exc_text": null, "filename": "test_interface.py", @@ -910,25 +943,25 @@ "None", "'state_a'" ], - "asctime": "2019-12-27 08:39:28,276", - "created": 1577432368.276421, + "asctime": "2020-06-16 09:01:50,914", + "created": 1592290910.914231, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__set_state__", "levelname": "DEBUG", "levelno": 10, - "lineno": 174, + "lineno": 176, "message": "StateMachine: State change ('__init__'): None -> 'state_a'", "module": "__init__", - "msecs": 276.42107009887695, + "msecs": 914.2310619354248, "msg": "%s State change (%s): %s -> %s", "name": "STATE_MACHINE", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/state_machine/__init__.py", - "process": 8622, + "pathname": "src/state_machine/__init__.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 911.3631248474121, - "thread": 140570112038720, + "relativeCreated": 943.4020519256592, + "thread": 139834866980672, "threadName": "MainThread" }, { @@ -938,46 +971,46 @@ "'state_a'", "'state_b'" ], - "asctime": "2019-12-27 08:39:28,276", - "created": 1577432368.2767, + "asctime": "2020-06-16 09:01:50,914", + "created": 1592290910.914365, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__set_state__", "levelname": "DEBUG", "levelno": 10, - "lineno": 174, + "lineno": 176, "message": "StateMachine: State change ('condition_a'): 'state_a' -> 'state_b'", "module": "__init__", - "msecs": 276.7000198364258, + "msecs": 914.3650531768799, "msg": "%s State change (%s): %s -> %s", "name": "STATE_MACHINE", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/state_machine/__init__.py", - "process": 8622, + "pathname": "src/state_machine/__init__.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 911.6420745849609, - "thread": 140570112038720, + "relativeCreated": 943.5360431671143, + "thread": 139834866980672, "threadName": "MainThread" } ], - "msecs": 276.885986328125, + "msecs": 914.4608974456787, "msg": "Running state machine test sequence.", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_interface.py", - "process": 8622, + "pathname": "src/tests/test_interface.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 911.8280410766602, - "thread": 140570112038720, + "relativeCreated": 943.6318874359131, + "thread": 139834866980672, "threadName": "MainThread", - "time_consumption": 0.00018596649169921875 + "time_consumption": 9.584426879882812e-05 }, { "args": [ "'condition_a'", "" ], - "asctime": "2019-12-27 08:39:28,277", - "created": 1577432368.277494, + "asctime": "2020-06-16 09:01:50,914", + "created": 1592290910.914747, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -994,8 +1027,8 @@ "'condition_a'", "" ], - "asctime": "2019-12-27 08:39:28,277", - "created": 1577432368.277121, + "asctime": "2020-06-16 09:01:50,914", + "created": 1592290910.914595, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -1005,14 +1038,14 @@ "lineno": 22, "message": "Result (Returnvalue of last_transition_condition()): 'condition_a' ()", "module": "test", - "msecs": 277.12106704711914, + "msecs": 914.5948886871338, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 912.0631217956543, - "thread": 140570112038720, + "relativeCreated": 943.7658786773682, + "thread": 139834866980672, "threadName": "MainThread" }, { @@ -1021,8 +1054,8 @@ "'condition_a'", "" ], - "asctime": "2019-12-27 08:39:28,277", - "created": 1577432368.277271, + "asctime": "2020-06-16 09:01:50,914", + "created": 1592290910.91467, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -1032,39 +1065,39 @@ "lineno": 26, "message": "Expectation (Returnvalue of last_transition_condition()): result = 'condition_a' ()", "module": "test", - "msecs": 277.271032333374, + "msecs": 914.6699905395508, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 912.2130870819092, - "thread": 140570112038720, + "relativeCreated": 943.8409805297852, + "thread": 139834866980672, "threadName": "MainThread" } ], - "msecs": 277.493953704834, + "msecs": 914.7469997406006, "msg": "Returnvalue of last_transition_condition() is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 912.4360084533691, - "thread": 140570112038720, + "relativeCreated": 943.917989730835, + "thread": 139834866980672, "threadName": "MainThread", - "time_consumption": 0.00022292137145996094 + "time_consumption": 7.700920104980469e-05 } ], - "thread": 140570112038720, + "thread": 139834866980672, "threadName": "MainThread", - "time_consumption": 0.0013508796691894531, - "time_finished": "2019-12-27 08:39:28,277", - "time_start": "2019-12-27 08:39:28,276" + "time_consumption": 0.0006558895111083984, + "time_finished": "2020-06-16 09:01:50,914", + "time_start": "2020-06-16 09:01:50,914" }, "_7Mq60HcyEemrUqotql_Blw": { "args": null, - "asctime": "2019-12-27 08:39:28,277", - "created": 1577432368.277894, + "asctime": "2020-06-16 09:01:50,914", + "created": 1592290910.914946, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -1075,18 +1108,18 @@ "message": "_7Mq60HcyEemrUqotql_Blw", "module": "__init__", "moduleLogger": [], - "msecs": 277.8940200805664, + "msecs": 914.9460792541504, "msg": "_7Mq60HcyEemrUqotql_Blw", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/__init__.py", - "process": 8622, + "pathname": "/user_data/data/dirk/prj/unittest/state_machine/unittest/src/tests/__init__.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 912.8360748291016, + "relativeCreated": 944.1170692443848, "testcaseLogger": [ { "args": [], - "asctime": "2019-12-27 08:39:28,278", - "created": 1577432368.278593, + "asctime": "2020-06-16 09:01:50,915", + "created": 1592290910.915274, "exc_info": null, "exc_text": null, "filename": "test_interface.py", @@ -1104,25 +1137,25 @@ "None", "'state_a'" ], - "asctime": "2019-12-27 08:39:28,278", - "created": 1577432368.278146, + "asctime": "2020-06-16 09:01:50,915", + "created": 1592290910.91507, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__set_state__", "levelname": "DEBUG", "levelno": 10, - "lineno": 174, + "lineno": 176, "message": "StateMachine: State change ('__init__'): None -> 'state_a'", "module": "__init__", - "msecs": 278.14602851867676, + "msecs": 915.0700569152832, "msg": "%s State change (%s): %s -> %s", "name": "STATE_MACHINE", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/state_machine/__init__.py", - "process": 8622, + "pathname": "src/state_machine/__init__.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 913.0880832672119, - "thread": 140570112038720, + "relativeCreated": 944.2410469055176, + "thread": 139834866980672, "threadName": "MainThread" }, { @@ -1132,46 +1165,46 @@ "'state_a'", "'state_b'" ], - "asctime": "2019-12-27 08:39:28,278", - "created": 1577432368.27842, + "asctime": "2020-06-16 09:01:50,915", + "created": 1592290910.915192, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__set_state__", "levelname": "DEBUG", "levelno": 10, - "lineno": 174, + "lineno": 176, "message": "StateMachine: State change ('condition_a'): 'state_a' -> 'state_b'", "module": "__init__", - "msecs": 278.41997146606445, + "msecs": 915.1918888092041, "msg": "%s State change (%s): %s -> %s", "name": "STATE_MACHINE", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/state_machine/__init__.py", - "process": 8622, + "pathname": "src/state_machine/__init__.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 913.3620262145996, - "thread": 140570112038720, + "relativeCreated": 944.3628787994385, + "thread": 139834866980672, "threadName": "MainThread" } ], - "msecs": 278.5930633544922, + "msecs": 915.273904800415, "msg": "Running state machine test sequence.", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_interface.py", - "process": 8622, + "pathname": "src/tests/test_interface.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 913.5351181030273, - "thread": 140570112038720, + "relativeCreated": 944.4448947906494, + "thread": 139834866980672, "threadName": "MainThread", - "time_consumption": 0.00017309188842773438 + "time_consumption": 8.20159912109375e-05 }, { "args": [ "True", "" ], - "asctime": "2019-12-27 08:39:28,279", - "created": 1577432368.27915, + "asctime": "2020-06-16 09:01:50,915", + "created": 1592290910.915541, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -1188,8 +1221,8 @@ "True", "" ], - "asctime": "2019-12-27 08:39:28,278", - "created": 1577432368.278842, + "asctime": "2020-06-16 09:01:50,915", + "created": 1592290910.915399, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -1199,14 +1232,14 @@ "lineno": 22, "message": "Result (Returnvalue of last_transition_condition(condition_a)): True ()", "module": "test", - "msecs": 278.8419723510742, + "msecs": 915.3990745544434, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 913.7840270996094, - "thread": 140570112038720, + "relativeCreated": 944.5700645446777, + "thread": 139834866980672, "threadName": "MainThread" }, { @@ -1215,8 +1248,8 @@ "True", "" ], - "asctime": "2019-12-27 08:39:28,278", - "created": 1577432368.278992, + "asctime": "2020-06-16 09:01:50,915", + "created": 1592290910.91547, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -1226,35 +1259,35 @@ "lineno": 26, "message": "Expectation (Returnvalue of last_transition_condition(condition_a)): result = True ()", "module": "test", - "msecs": 278.9919376373291, + "msecs": 915.4698848724365, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 913.9339923858643, - "thread": 140570112038720, + "relativeCreated": 944.6408748626709, + "thread": 139834866980672, "threadName": "MainThread" } ], - "msecs": 279.15000915527344, + "msecs": 915.5409336090088, "msg": "Returnvalue of last_transition_condition(condition_a) is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 914.0920639038086, - "thread": 140570112038720, + "relativeCreated": 944.7119235992432, + "thread": 139834866980672, "threadName": "MainThread", - "time_consumption": 0.00015807151794433594 + "time_consumption": 7.104873657226562e-05 }, { "args": [ "False", "" ], - "asctime": "2019-12-27 08:39:28,279", - "created": 1577432368.279675, + "asctime": "2020-06-16 09:01:50,915", + "created": 1592290910.915794, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -1271,8 +1304,8 @@ "False", "" ], - "asctime": "2019-12-27 08:39:28,279", - "created": 1577432368.279388, + "asctime": "2020-06-16 09:01:50,915", + "created": 1592290910.915658, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -1282,14 +1315,14 @@ "lineno": 22, "message": "Result (Returnvalue of last_transition_condition(condition_c)): False ()", "module": "test", - "msecs": 279.3879508972168, + "msecs": 915.6579971313477, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 914.330005645752, - "thread": 140570112038720, + "relativeCreated": 944.828987121582, + "thread": 139834866980672, "threadName": "MainThread" }, { @@ -1298,8 +1331,8 @@ "False", "" ], - "asctime": "2019-12-27 08:39:28,279", - "created": 1577432368.279531, + "asctime": "2020-06-16 09:01:50,915", + "created": 1592290910.915726, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -1309,39 +1342,39 @@ "lineno": 26, "message": "Expectation (Returnvalue of last_transition_condition(condition_c)): result = False ()", "module": "test", - "msecs": 279.53100204467773, + "msecs": 915.7259464263916, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 914.4730567932129, - "thread": 140570112038720, + "relativeCreated": 944.896936416626, + "thread": 139834866980672, "threadName": "MainThread" } ], - "msecs": 279.6750068664551, + "msecs": 915.7938957214355, "msg": "Returnvalue of last_transition_condition(condition_c) is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 914.6170616149902, - "thread": 140570112038720, + "relativeCreated": 944.9648857116699, + "thread": 139834866980672, "threadName": "MainThread", - "time_consumption": 0.00014400482177734375 + "time_consumption": 6.794929504394531e-05 } ], - "thread": 140570112038720, + "thread": 139834866980672, "threadName": "MainThread", - "time_consumption": 0.0017809867858886719, - "time_finished": "2019-12-27 08:39:28,279", - "time_start": "2019-12-27 08:39:28,277" + "time_consumption": 0.0008478164672851562, + "time_finished": "2020-06-16 09:01:50,915", + "time_start": "2020-06-16 09:01:50,914" }, "_AcYg8HczEemrUqotql_Blw": { "args": null, - "asctime": "2019-12-27 08:39:28,282", - "created": 1577432368.282251, + "asctime": "2020-06-16 09:01:50,916", + "created": 1592290910.916779, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -1352,18 +1385,18 @@ "message": "_AcYg8HczEemrUqotql_Blw", "module": "__init__", "moduleLogger": [], - "msecs": 282.25088119506836, + "msecs": 916.7790412902832, "msg": "_AcYg8HczEemrUqotql_Blw", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/__init__.py", - "process": 8622, + "pathname": "/user_data/data/dirk/prj/unittest/state_machine/unittest/src/tests/__init__.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 917.1929359436035, + "relativeCreated": 945.9500312805176, "testcaseLogger": [ { "args": [], - "asctime": "2019-12-27 08:39:28,282", - "created": 1577432368.282974, + "asctime": "2020-06-16 09:01:50,917", + "created": 1592290910.917094, "exc_info": null, "exc_text": null, "filename": "test_interface.py", @@ -1381,25 +1414,25 @@ "None", "'state_a'" ], - "asctime": "2019-12-27 08:39:28,282", - "created": 1577432368.282536, + "asctime": "2020-06-16 09:01:50,916", + "created": 1592290910.916899, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__set_state__", "levelname": "DEBUG", "levelno": 10, - "lineno": 174, + "lineno": 176, "message": "StateMachine: State change ('__init__'): None -> 'state_a'", "module": "__init__", - "msecs": 282.5360298156738, + "msecs": 916.8989658355713, "msg": "%s State change (%s): %s -> %s", "name": "STATE_MACHINE", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/state_machine/__init__.py", - "process": 8622, + "pathname": "src/state_machine/__init__.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 917.478084564209, - "thread": 140570112038720, + "relativeCreated": 946.0699558258057, + "thread": 139834866980672, "threadName": "MainThread" }, { @@ -1409,46 +1442,46 @@ "'state_a'", "'state_b'" ], - "asctime": "2019-12-27 08:39:28,282", - "created": 1577432368.282799, + "asctime": "2020-06-16 09:01:50,917", + "created": 1592290910.917014, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__set_state__", "levelname": "DEBUG", "levelno": 10, - "lineno": 174, + "lineno": 176, "message": "StateMachine: State change ('condition_a'): 'state_a' -> 'state_b'", "module": "__init__", - "msecs": 282.79900550842285, + "msecs": 917.0138835906982, "msg": "%s State change (%s): %s -> %s", "name": "STATE_MACHINE", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/state_machine/__init__.py", - "process": 8622, + "pathname": "src/state_machine/__init__.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 917.741060256958, - "thread": 140570112038720, + "relativeCreated": 946.1848735809326, + "thread": 139834866980672, "threadName": "MainThread" } ], - "msecs": 282.9740047454834, + "msecs": 917.0939922332764, "msg": "Running state machine test sequence.", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_interface.py", - "process": 8622, + "pathname": "src/tests/test_interface.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 917.9160594940186, - "thread": 140570112038720, + "relativeCreated": 946.2649822235107, + "thread": 139834866980672, "threadName": "MainThread", - "time_consumption": 0.00017499923706054688 + "time_consumption": 8.0108642578125e-05 }, { "args": [ "True", "" ], - "asctime": "2019-12-27 08:39:28,283", - "created": 1577432368.283525, + "asctime": "2020-06-16 09:01:50,917", + "created": 1592290910.917358, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -1465,8 +1498,8 @@ "True", "" ], - "asctime": "2019-12-27 08:39:28,283", - "created": 1577432368.283225, + "asctime": "2020-06-16 09:01:50,917", + "created": 1592290910.917215, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -1476,14 +1509,14 @@ "lineno": 22, "message": "Result (Returnvalue of previous_state_was(state_a)): True ()", "module": "test", - "msecs": 283.22505950927734, + "msecs": 917.21510887146, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 918.1671142578125, - "thread": 140570112038720, + "relativeCreated": 946.3860988616943, + "thread": 139834866980672, "threadName": "MainThread" }, { @@ -1492,8 +1525,8 @@ "True", "" ], - "asctime": "2019-12-27 08:39:28,283", - "created": 1577432368.283376, + "asctime": "2020-06-16 09:01:50,917", + "created": 1592290910.917285, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -1503,35 +1536,35 @@ "lineno": 26, "message": "Expectation (Returnvalue of previous_state_was(state_a)): result = True ()", "module": "test", - "msecs": 283.37597846984863, + "msecs": 917.2849655151367, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 918.3180332183838, - "thread": 140570112038720, + "relativeCreated": 946.4559555053711, + "thread": 139834866980672, "threadName": "MainThread" } ], - "msecs": 283.5249900817871, + "msecs": 917.3579216003418, "msg": "Returnvalue of previous_state_was(state_a) is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 918.4670448303223, - "thread": 140570112038720, + "relativeCreated": 946.5289115905762, + "thread": 139834866980672, "threadName": "MainThread", - "time_consumption": 0.00014901161193847656 + "time_consumption": 7.295608520507812e-05 }, { "args": [ "False", "" ], - "asctime": "2019-12-27 08:39:28,284", - "created": 1577432368.284041, + "asctime": "2020-06-16 09:01:50,917", + "created": 1592290910.917603, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -1548,8 +1581,8 @@ "False", "" ], - "asctime": "2019-12-27 08:39:28,283", - "created": 1577432368.283754, + "asctime": "2020-06-16 09:01:50,917", + "created": 1592290910.917468, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -1559,14 +1592,14 @@ "lineno": 22, "message": "Result (Returnvalue of previous_state_was(state_b)): False ()", "module": "test", - "msecs": 283.7541103363037, + "msecs": 917.4680709838867, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 918.6961650848389, - "thread": 140570112038720, + "relativeCreated": 946.6390609741211, + "thread": 139834866980672, "threadName": "MainThread" }, { @@ -1575,8 +1608,8 @@ "False", "" ], - "asctime": "2019-12-27 08:39:28,283", - "created": 1577432368.283898, + "asctime": "2020-06-16 09:01:50,917", + "created": 1592290910.917536, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -1586,39 +1619,39 @@ "lineno": 26, "message": "Expectation (Returnvalue of previous_state_was(state_b)): result = False ()", "module": "test", - "msecs": 283.89811515808105, + "msecs": 917.5360202789307, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 918.8401699066162, - "thread": 140570112038720, + "relativeCreated": 946.707010269165, + "thread": 139834866980672, "threadName": "MainThread" } ], - "msecs": 284.0409278869629, + "msecs": 917.6030158996582, "msg": "Returnvalue of previous_state_was(state_b) is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 918.982982635498, - "thread": 140570112038720, + "relativeCreated": 946.7740058898926, + "thread": 139834866980672, "threadName": "MainThread", - "time_consumption": 0.00014281272888183594 + "time_consumption": 6.699562072753906e-05 } ], - "thread": 140570112038720, + "thread": 139834866980672, "threadName": "MainThread", - "time_consumption": 0.0017900466918945312, - "time_finished": "2019-12-27 08:39:28,284", - "time_start": "2019-12-27 08:39:28,282" + "time_consumption": 0.000823974609375, + "time_finished": "2020-06-16 09:01:50,917", + "time_start": "2020-06-16 09:01:50,916" }, "_C0Vi0HgPEemBsuKWG645TA": { "args": null, - "asctime": "2019-12-27 08:39:27,775", - "created": 1577432367.775715, + "asctime": "2020-06-16 09:01:50,413", + "created": 1592290910.41397, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -1629,21 +1662,21 @@ "message": "_C0Vi0HgPEemBsuKWG645TA", "module": "__init__", "moduleLogger": [], - "msecs": 775.7151126861572, + "msecs": 413.9699935913086, "msg": "_C0Vi0HgPEemBsuKWG645TA", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/__init__.py", - "process": 8622, + "pathname": "/user_data/data/dirk/prj/unittest/state_machine/unittest/src/tests/__init__.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 410.6571674346924, + "relativeCreated": 443.14098358154297, "testcaseLogger": [ { "args": [ 0.151, 0.15 ], - "asctime": "2019-12-27 08:39:27,776", - "created": 1577432367.776229, + "asctime": "2020-06-16 09:01:50,414", + "created": 1592290910.414728, "exc_info": null, "exc_text": null, "filename": "test_transitions.py", @@ -1661,46 +1694,46 @@ "None", "'state_a'" ], - "asctime": "2019-12-27 08:39:27,776", - "created": 1577432367.776049, + "asctime": "2020-06-16 09:01:50,414", + "created": 1592290910.414408, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__set_state__", "levelname": "DEBUG", "levelno": 10, - "lineno": 174, + "lineno": 176, "message": "StateMachine: State change ('__init__'): None -> 'state_a'", "module": "__init__", - "msecs": 776.0488986968994, + "msecs": 414.40796852111816, "msg": "%s State change (%s): %s -> %s", "name": "STATE_MACHINE", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/state_machine/__init__.py", - "process": 8622, + "pathname": "src/state_machine/__init__.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 410.99095344543457, - "thread": 140570112038720, + "relativeCreated": 443.57895851135254, + "thread": 139834866980672, "threadName": "MainThread" } ], - "msecs": 776.2289047241211, + "msecs": 414.72792625427246, "msg": "Initialising state machine with state_a, a transition to state_b after %.03fs and a transition to state_c after %.03fs", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_transitions.py", - "process": 8622, + "pathname": "src/tests/test_transitions.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 411.17095947265625, - "thread": 140570112038720, + "relativeCreated": 443.89891624450684, + "thread": 139834866980672, "threadName": "MainThread", - "time_consumption": 0.0001800060272216797 + "time_consumption": 0.0003199577331542969 }, { "args": [ "'state_a'", "" ], - "asctime": "2019-12-27 08:39:27,776", - "created": 1577432367.776736, + "asctime": "2020-06-16 09:01:50,415", + "created": 1592290910.415335, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -1717,8 +1750,8 @@ "'state_a'", "" ], - "asctime": "2019-12-27 08:39:27,776", - "created": 1577432367.776467, + "asctime": "2020-06-16 09:01:50,414", + "created": 1592290910.414999, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -1728,14 +1761,14 @@ "lineno": 22, "message": "Result (Initial state after Initialisation): 'state_a' ()", "module": "test", - "msecs": 776.4670848846436, + "msecs": 414.99900817871094, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 411.4091396331787, - "thread": 140570112038720, + "relativeCreated": 444.1699981689453, + "thread": 139834866980672, "threadName": "MainThread" }, { @@ -1744,8 +1777,8 @@ "'state_a'", "" ], - "asctime": "2019-12-27 08:39:27,776", - "created": 1577432367.776603, + "asctime": "2020-06-16 09:01:50,415", + "created": 1592290910.41515, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -1755,34 +1788,34 @@ "lineno": 26, "message": "Expectation (Initial state after Initialisation): result = 'state_a' ()", "module": "test", - "msecs": 776.6029834747314, + "msecs": 415.1499271392822, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 411.5450382232666, - "thread": 140570112038720, + "relativeCreated": 444.3209171295166, + "thread": 139834866980672, "threadName": "MainThread" } ], - "msecs": 776.7360210418701, + "msecs": 415.33493995666504, "msg": "Initial state after Initialisation is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 411.6780757904053, - "thread": 140570112038720, + "relativeCreated": 444.5059299468994, + "thread": 139834866980672, "threadName": "MainThread", - "time_consumption": 0.00013303756713867188 + "time_consumption": 0.0001850128173828125 }, { "args": [ 0.3 ], - "asctime": "2019-12-27 08:39:28,018", - "created": 1577432368.018843, + "asctime": "2020-06-16 09:01:50,658", + "created": 1592290910.658324, "exc_info": null, "exc_text": null, "filename": "test_transitions.py", @@ -1795,10 +1828,10 @@ "moduleLogger": [ { "args": [ - 9.775161743164062e-06 + 2.5033950805664062e-05 ], - "asctime": "2019-12-27 08:39:27,776", - "created": 1577432367.776937, + "asctime": "2020-06-16 09:01:50,415", + "created": 1592290910.415717, "exc_info": null, "exc_text": null, "filename": "test_transitions.py", @@ -1808,22 +1841,22 @@ "lineno": 141, "message": "Executing method work after 0.000s", "module": "test_transitions", - "msecs": 776.9370079040527, + "msecs": 415.71688652038574, "msg": "Executing method work after %.03fs", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_transitions.py", - "process": 8622, + "pathname": "src/tests/test_transitions.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 411.8790626525879, - "thread": 140570112038720, + "relativeCreated": 444.8878765106201, + "thread": 139834866980672, "threadName": "MainThread" }, { "args": [ - 0.06033587455749512 + 0.060669898986816406 ], - "asctime": "2019-12-27 08:39:27,837", - "created": 1577432367.837277, + "asctime": "2020-06-16 09:01:50,476", + "created": 1592290910.476482, "exc_info": null, "exc_text": null, "filename": "test_transitions.py", @@ -1831,24 +1864,24 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 141, - "message": "Executing method work after 0.060s", + "message": "Executing method work after 0.061s", "module": "test_transitions", - "msecs": 837.2769355773926, + "msecs": 476.4819145202637, "msg": "Executing method work after %.03fs", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_transitions.py", - "process": 8622, + "pathname": "src/tests/test_transitions.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 472.21899032592773, - "thread": 140570112038720, + "relativeCreated": 505.65290451049805, + "thread": 139834866980672, "threadName": "MainThread" }, { "args": [ - 0.12077593803405762 + 0.12166786193847656 ], - "asctime": "2019-12-27 08:39:27,897", - "created": 1577432367.897731, + "asctime": "2020-06-16 09:01:50,537", + "created": 1592290910.537382, "exc_info": null, "exc_text": null, "filename": "test_transitions.py", @@ -1856,24 +1889,24 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 141, - "message": "Executing method work after 0.121s", + "message": "Executing method work after 0.122s", "module": "test_transitions", - "msecs": 897.7310657501221, + "msecs": 537.3818874359131, "msg": "Executing method work after %.03fs", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_transitions.py", - "process": 8622, + "pathname": "src/tests/test_transitions.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 532.6731204986572, - "thread": 140570112038720, + "relativeCreated": 566.5528774261475, + "thread": 139834866980672, "threadName": "MainThread" }, { "args": [ - 0.18125200271606445 + 0.1821298599243164 ], - "asctime": "2019-12-27 08:39:27,958", - "created": 1577432367.958198, + "asctime": "2020-06-16 09:01:50,597", + "created": 1592290910.597825, "exc_info": null, "exc_text": null, "filename": "test_transitions.py", @@ -1881,16 +1914,16 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 141, - "message": "Executing method work after 0.181s", + "message": "Executing method work after 0.182s", "module": "test_transitions", - "msecs": 958.198070526123, + "msecs": 597.8250503540039, "msg": "Executing method work after %.03fs", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_transitions.py", - "process": 8622, + "pathname": "src/tests/test_transitions.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 593.1401252746582, - "thread": 140570112038720, + "relativeCreated": 626.9960403442383, + "thread": 139834866980672, "threadName": "MainThread" }, { @@ -1900,46 +1933,46 @@ "'state_a'", "'state_c'" ], - "asctime": "2019-12-27 08:39:27,958", - "created": 1577432367.958491, + "asctime": "2020-06-16 09:01:50,598", + "created": 1592290910.598024, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__set_state__", "levelname": "DEBUG", "levelno": 10, - "lineno": 174, + "lineno": 176, "message": "StateMachine: State change ('condition_true'): 'state_a' -> 'state_c'", "module": "__init__", - "msecs": 958.4910869598389, + "msecs": 598.0238914489746, "msg": "%s State change (%s): %s -> %s", "name": "STATE_MACHINE", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/state_machine/__init__.py", - "process": 8622, + "pathname": "src/state_machine/__init__.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 593.433141708374, - "thread": 140570112038720, + "relativeCreated": 627.194881439209, + "thread": 139834866980672, "threadName": "MainThread" } ], - "msecs": 18.84293556213379, + "msecs": 658.3240032196045, "msg": "Waiting for %.3fs or state change", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_transitions.py", - "process": 8622, + "pathname": "src/tests/test_transitions.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 653.784990310669, - "thread": 140570112038720, + "relativeCreated": 687.4949932098389, + "thread": 139834866980672, "threadName": "MainThread", - "time_consumption": 0.06035184860229492 + "time_consumption": 0.06030011177062988 }, { "args": [ "'state_c'", "" ], - "asctime": "2019-12-27 08:39:28,019", - "created": 1577432368.019661, + "asctime": "2020-06-16 09:01:50,659", + "created": 1592290910.659034, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -1956,8 +1989,8 @@ "'state_c'", "" ], - "asctime": "2019-12-27 08:39:28,019", - "created": 1577432368.019287, + "asctime": "2020-06-16 09:01:50,658", + "created": 1592290910.658749, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -1967,14 +2000,14 @@ "lineno": 22, "message": "Result (State after 1st cycle): 'state_c' ()", "module": "test", - "msecs": 19.287109375, + "msecs": 658.7491035461426, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 654.2291641235352, - "thread": 140570112038720, + "relativeCreated": 687.920093536377, + "thread": 139834866980672, "threadName": "MainThread" }, { @@ -1983,8 +2016,8 @@ "'state_c'", "" ], - "asctime": "2019-12-27 08:39:28,019", - "created": 1577432368.019478, + "asctime": "2020-06-16 09:01:50,658", + "created": 1592290910.658901, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -1994,39 +2027,39 @@ "lineno": 26, "message": "Expectation (State after 1st cycle): result = 'state_c' ()", "module": "test", - "msecs": 19.47808265686035, + "msecs": 658.9009761810303, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 654.4201374053955, - "thread": 140570112038720, + "relativeCreated": 688.0719661712646, + "thread": 139834866980672, "threadName": "MainThread" } ], - "msecs": 19.66094970703125, + "msecs": 659.034013748169, "msg": "State after 1st cycle is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 654.6030044555664, - "thread": 140570112038720, + "relativeCreated": 688.2050037384033, + "thread": 139834866980672, "threadName": "MainThread", - "time_consumption": 0.00018286705017089844 + "time_consumption": 0.00013303756713867188 } ], - "thread": 140570112038720, + "thread": 139834866980672, "threadName": "MainThread", - "time_consumption": 0.24394583702087402, - "time_finished": "2019-12-27 08:39:28,019", - "time_start": "2019-12-27 08:39:27,775" + "time_consumption": 0.24506402015686035, + "time_finished": "2020-06-16 09:01:50,659", + "time_start": "2020-06-16 09:01:50,413" }, "_GeMSYHczEemrUqotql_Blw": { "args": null, - "asctime": "2019-12-27 08:39:28,284", - "created": 1577432368.284448, + "asctime": "2020-06-16 09:01:50,917", + "created": 1592290910.917797, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -2037,18 +2070,18 @@ "message": "_GeMSYHczEemrUqotql_Blw", "module": "__init__", "moduleLogger": [], - "msecs": 284.44790840148926, + "msecs": 917.7970886230469, "msg": "_GeMSYHczEemrUqotql_Blw", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/__init__.py", - "process": 8622, + "pathname": "/user_data/data/dirk/prj/unittest/state_machine/unittest/src/tests/__init__.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 919.3899631500244, + "relativeCreated": 946.9680786132812, "testcaseLogger": [ { "args": [], - "asctime": "2019-12-27 08:39:29,036", - "created": 1577432369.03659, + "asctime": "2020-06-16 09:01:51,669", + "created": 1592290911.669277, "exc_info": null, "exc_text": null, "filename": "test_interface.py", @@ -2066,25 +2099,25 @@ "None", "'state_a'" ], - "asctime": "2019-12-27 08:39:28,284", - "created": 1577432368.284695, + "asctime": "2020-06-16 09:01:50,917", + "created": 1592290910.917921, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__set_state__", "levelname": "DEBUG", "levelno": 10, - "lineno": 174, + "lineno": 176, "message": "StateMachine: State change ('__init__'): None -> 'state_a'", "module": "__init__", - "msecs": 284.6949100494385, + "msecs": 917.9210662841797, "msg": "%s State change (%s): %s -> %s", "name": "STATE_MACHINE", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/state_machine/__init__.py", - "process": 8622, + "pathname": "src/state_machine/__init__.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 919.6369647979736, - "thread": 140570112038720, + "relativeCreated": 947.0920562744141, + "thread": 139834866980672, "threadName": "MainThread" }, { @@ -2094,33 +2127,33 @@ "'state_a'", "'state_b'" ], - "asctime": "2019-12-27 08:39:28,284", - "created": 1577432368.284961, + "asctime": "2020-06-16 09:01:50,918", + "created": 1592290910.918036, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__set_state__", "levelname": "DEBUG", "levelno": 10, - "lineno": 174, + "lineno": 176, "message": "StateMachine: State change ('condition_a'): 'state_a' -> 'state_b'", "module": "__init__", - "msecs": 284.9609851837158, + "msecs": 918.0359840393066, "msg": "%s State change (%s): %s -> %s", "name": "STATE_MACHINE", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/state_machine/__init__.py", - "process": 8622, + "pathname": "src/state_machine/__init__.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 919.903039932251, - "thread": 140570112038720, + "relativeCreated": 947.206974029541, + "thread": 139834866980672, "threadName": "MainThread" }, { "args": [ 0.75 ], - "asctime": "2019-12-27 08:39:28,285", - "created": 1577432368.285144, + "asctime": "2020-06-16 09:01:50,918", + "created": 1592290910.918116, "exc_info": null, "exc_text": null, "filename": "test_interface.py", @@ -2130,14 +2163,14 @@ "lineno": 73, "message": "Waiting for 0.75s", "module": "test_interface", - "msecs": 285.1440906524658, + "msecs": 918.1160926818848, "msg": "Waiting for %.2fs", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_interface.py", - "process": 8622, + "pathname": "src/tests/test_interface.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 920.086145401001, - "thread": 140570112038720, + "relativeCreated": 947.2870826721191, + "thread": 139834866980672, "threadName": "MainThread" }, { @@ -2147,48 +2180,48 @@ "'state_b'", "'state_a'" ], - "asctime": "2019-12-27 08:39:29,036", - "created": 1577432369.036269, + "asctime": "2020-06-16 09:01:51,669", + "created": 1592290911.66909, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__set_state__", "levelname": "DEBUG", "levelno": 10, - "lineno": 174, + "lineno": 176, "message": "StateMachine: State change ('condition_b'): 'state_b' -> 'state_a'", "module": "__init__", - "msecs": 36.26894950866699, + "msecs": 669.0900325775146, "msg": "%s State change (%s): %s -> %s", "name": "STATE_MACHINE", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/state_machine/__init__.py", - "process": 8622, + "pathname": "src/state_machine/__init__.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1671.2110042572021, - "thread": 140570112038720, + "relativeCreated": 1698.261022567749, + "thread": 139834866980672, "threadName": "MainThread" } ], - "msecs": 36.5900993347168, + "msecs": 669.2769527435303, "msg": "Running state machine test sequence.", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_interface.py", - "process": 8622, + "pathname": "src/tests/test_interface.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1671.532154083252, - "thread": 140570112038720, + "relativeCreated": 1698.4479427337646, + "thread": 139834866980672, "threadName": "MainThread", - "time_consumption": 0.0003211498260498047 + "time_consumption": 0.000186920166015625 }, { "args": [ - "0.7514290809631348", + "0.751147985458374", "0.7", "0.8", "" ], - "asctime": "2019-12-27 08:39:29,037", - "created": 1577432369.037318, + "asctime": "2020-06-16 09:01:51,669", + "created": 1592290911.669642, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2196,17 +2229,17 @@ "levelname": "INFO", "levelno": 20, "lineno": 218, - "message": "Return Value of previous_state_duration() is correct (Content 0.7514290809631348 in [0.7 ... 0.8] and Type is ).", + "message": "Return Value of previous_state_duration() is correct (Content 0.751147985458374 in [0.7 ... 0.8] and Type is ).", "module": "test", "moduleLogger": [ { "args": [ "Return Value of previous_state_duration()", - "0.7514290809631348", + "0.751147985458374", "" ], - "asctime": "2019-12-27 08:39:29,036", - "created": 1577432369.036942, + "asctime": "2020-06-16 09:01:51,669", + "created": 1592290911.669456, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2214,16 +2247,16 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 22, - "message": "Result (Return Value of previous_state_duration()): 0.7514290809631348 ()", + "message": "Result (Return Value of previous_state_duration()): 0.751147985458374 ()", "module": "test", - "msecs": 36.9420051574707, + "msecs": 669.4560050964355, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1671.8840599060059, - "thread": 140570112038720, + "relativeCreated": 1698.62699508667, + "thread": 139834866980672, "threadName": "MainThread" }, { @@ -2232,8 +2265,8 @@ "0.7", "0.8" ], - "asctime": "2019-12-27 08:39:29,037", - "created": 1577432369.037137, + "asctime": "2020-06-16 09:01:51,669", + "created": 1592290911.669549, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2243,39 +2276,39 @@ "lineno": 30, "message": "Expectation (Return Value of previous_state_duration()): 0.7 <= result <= 0.8", "module": "test", - "msecs": 37.13703155517578, + "msecs": 669.5489883422852, "msg": "Expectation (%s): %s <= result <= %s", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1672.079086303711, - "thread": 140570112038720, + "relativeCreated": 1698.7199783325195, + "thread": 139834866980672, "threadName": "MainThread" } ], - "msecs": 37.31799125671387, + "msecs": 669.6419715881348, "msg": "Return Value of previous_state_duration() is correct (Content %s in [%s ... %s] and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1672.260046005249, - "thread": 140570112038720, + "relativeCreated": 1698.8129615783691, + "thread": 139834866980672, "threadName": "MainThread", - "time_consumption": 0.00018095970153808594 + "time_consumption": 9.298324584960938e-05 } ], - "thread": 140570112038720, + "thread": 139834866980672, "threadName": "MainThread", - "time_consumption": 0.7528700828552246, - "time_finished": "2019-12-27 08:39:29,037", - "time_start": "2019-12-27 08:39:28,284" + "time_consumption": 0.7518448829650879, + "time_finished": "2020-06-16 09:01:51,669", + "time_start": "2020-06-16 09:01:50,917" }, "_P7R34HczEemrUqotql_Blw": { "args": null, - "asctime": "2019-12-27 08:39:27,393", - "created": 1577432367.393924, + "asctime": "2020-06-16 09:01:50,027", + "created": 1592290910.027791, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -2286,18 +2319,18 @@ "message": "_P7R34HczEemrUqotql_Blw", "module": "__init__", "moduleLogger": [], - "msecs": 393.9239978790283, + "msecs": 27.79102325439453, "msg": "_P7R34HczEemrUqotql_Blw", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/__init__.py", - "process": 8622, + "pathname": "/user_data/data/dirk/prj/unittest/state_machine/unittest/src/tests/__init__.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 28.866052627563477, + "relativeCreated": 56.962013244628906, "testcaseLogger": [ { "args": [], - "asctime": "2019-12-27 08:39:27,394", - "created": 1577432367.394065, + "asctime": "2020-06-16 09:01:50,028", + "created": 1592290910.028462, "exc_info": null, "exc_text": null, "filename": "test_transitions.py", @@ -2315,46 +2348,46 @@ "None", "'state_a'" ], - "asctime": "2019-12-27 08:39:27,394", - "created": 1577432367.394016, + "asctime": "2020-06-16 09:01:50,028", + "created": 1592290910.028266, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__set_state__", "levelname": "DEBUG", "levelno": 10, - "lineno": 174, + "lineno": 176, "message": "StateMachine: State change ('__init__'): None -> 'state_a'", "module": "__init__", - "msecs": 394.0160274505615, + "msecs": 28.265953063964844, "msg": "%s State change (%s): %s -> %s", "name": "STATE_MACHINE", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/state_machine/__init__.py", - "process": 8622, + "pathname": "src/state_machine/__init__.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 28.95808219909668, - "thread": 140570112038720, + "relativeCreated": 57.43694305419922, + "thread": 139834866980672, "threadName": "MainThread" } ], - "msecs": 394.06490325927734, + "msecs": 28.461933135986328, "msg": "Initialising state machine with state_a", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_transitions.py", - "process": 8622, + "pathname": "src/tests/test_transitions.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 29.0069580078125, - "thread": 140570112038720, + "relativeCreated": 57.6329231262207, + "thread": 139834866980672, "threadName": "MainThread", - "time_consumption": 4.887580871582031e-05 + "time_consumption": 0.00019598007202148438 }, { "args": [ "'state_a'", "" ], - "asctime": "2019-12-27 08:39:27,394", - "created": 1577432367.394256, + "asctime": "2020-06-16 09:01:50,028", + "created": 1592290910.028765, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2371,8 +2404,8 @@ "'state_a'", "" ], - "asctime": "2019-12-27 08:39:27,394", - "created": 1577432367.394128, + "asctime": "2020-06-16 09:01:50,028", + "created": 1592290910.02859, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2382,14 +2415,14 @@ "lineno": 22, "message": "Result (Initial state after Initialisation): 'state_a' ()", "module": "test", - "msecs": 394.12808418273926, + "msecs": 28.589963912963867, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 29.070138931274414, - "thread": 140570112038720, + "relativeCreated": 57.76095390319824, + "thread": 139834866980672, "threadName": "MainThread" }, { @@ -2398,8 +2431,8 @@ "'state_a'", "" ], - "asctime": "2019-12-27 08:39:27,394", - "created": 1577432367.394176, + "asctime": "2020-06-16 09:01:50,028", + "created": 1592290910.028669, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2409,32 +2442,32 @@ "lineno": 26, "message": "Expectation (Initial state after Initialisation): result = 'state_a' ()", "module": "test", - "msecs": 394.1760063171387, + "msecs": 28.669118881225586, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 29.118061065673828, - "thread": 140570112038720, + "relativeCreated": 57.84010887145996, + "thread": 139834866980672, "threadName": "MainThread" } ], - "msecs": 394.2561149597168, + "msecs": 28.764963150024414, "msg": "Initial state after Initialisation is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 29.198169708251953, - "thread": 140570112038720, + "relativeCreated": 57.93595314025879, + "thread": 139834866980672, "threadName": "MainThread", - "time_consumption": 8.0108642578125e-05 + "time_consumption": 9.584426879882812e-05 }, { "args": [], - "asctime": "2019-12-27 08:39:27,394", - "created": 1577432367.394407, + "asctime": "2020-06-16 09:01:50,029", + "created": 1592290910.029124, "exc_info": null, "exc_text": null, "filename": "test_transitions.py", @@ -2452,46 +2485,46 @@ "'state_a'", "'state_b'" ], - "asctime": "2019-12-27 08:39:27,394", - "created": 1577432367.394358, + "asctime": "2020-06-16 09:01:50,028", + "created": 1592290910.028989, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__set_state__", "levelname": "DEBUG", "levelno": 10, - "lineno": 174, + "lineno": 176, "message": "StateMachine: State change ('condition_true'): 'state_a' -> 'state_b'", "module": "__init__", - "msecs": 394.35791969299316, + "msecs": 28.989076614379883, "msg": "%s State change (%s): %s -> %s", "name": "STATE_MACHINE", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/state_machine/__init__.py", - "process": 8622, + "pathname": "src/state_machine/__init__.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 29.29997444152832, - "thread": 140570112038720, + "relativeCreated": 58.16006660461426, + "thread": 139834866980672, "threadName": "MainThread" } ], - "msecs": 394.4070339202881, + "msecs": 29.124021530151367, "msg": "Work routine executed the 1st time to do the state change. Defined Transitions are: True->state_b (0.0s); False->state_c (0.0s)", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_transitions.py", - "process": 8622, + "pathname": "src/tests/test_transitions.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 29.349088668823242, - "thread": 140570112038720, + "relativeCreated": 58.29501152038574, + "thread": 139834866980672, "threadName": "MainThread", - "time_consumption": 4.9114227294921875e-05 + "time_consumption": 0.00013494491577148438 }, { "args": [ "'state_b'", "" ], - "asctime": "2019-12-27 08:39:27,394", - "created": 1577432367.39455, + "asctime": "2020-06-16 09:01:50,029", + "created": 1592290910.029484, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2508,8 +2541,8 @@ "'state_b'", "" ], - "asctime": "2019-12-27 08:39:27,394", - "created": 1577432367.394469, + "asctime": "2020-06-16 09:01:50,029", + "created": 1592290910.029274, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2519,14 +2552,14 @@ "lineno": 22, "message": "Result (State after 1st execution of work method): 'state_b' ()", "module": "test", - "msecs": 394.4690227508545, + "msecs": 29.27398681640625, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 29.41107749938965, - "thread": 140570112038720, + "relativeCreated": 58.444976806640625, + "thread": 139834866980672, "threadName": "MainThread" }, { @@ -2535,8 +2568,8 @@ "'state_b'", "" ], - "asctime": "2019-12-27 08:39:27,394", - "created": 1577432367.394508, + "asctime": "2020-06-16 09:01:50,029", + "created": 1592290910.029353, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2546,32 +2579,32 @@ "lineno": 26, "message": "Expectation (State after 1st execution of work method): result = 'state_b' ()", "module": "test", - "msecs": 394.50788497924805, + "msecs": 29.352903366088867, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 29.449939727783203, - "thread": 140570112038720, + "relativeCreated": 58.52389335632324, + "thread": 139834866980672, "threadName": "MainThread" } ], - "msecs": 394.550085067749, + "msecs": 29.484033584594727, "msg": "State after 1st execution of work method is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 29.49213981628418, - "thread": 140570112038720, + "relativeCreated": 58.6550235748291, + "thread": 139834866980672, "threadName": "MainThread", - "time_consumption": 4.220008850097656e-05 + "time_consumption": 0.00013113021850585938 }, { "args": [], - "asctime": "2019-12-27 08:39:27,394", - "created": 1577432367.394664, + "asctime": "2020-06-16 09:01:50,030", + "created": 1592290910.030084, "exc_info": null, "exc_text": null, "filename": "test_transitions.py", @@ -2589,46 +2622,46 @@ "'state_b'", "'state_c'" ], - "asctime": "2019-12-27 08:39:27,394", - "created": 1577432367.39462, + "asctime": "2020-06-16 09:01:50,029", + "created": 1592290910.029842, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__set_state__", "levelname": "DEBUG", "levelno": 10, - "lineno": 174, + "lineno": 176, "message": "StateMachine: State change ('condition_true'): 'state_b' -> 'state_c'", "module": "__init__", - "msecs": 394.6199417114258, + "msecs": 29.841899871826172, "msg": "%s State change (%s): %s -> %s", "name": "STATE_MACHINE", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/state_machine/__init__.py", - "process": 8622, + "pathname": "src/state_machine/__init__.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 29.561996459960938, - "thread": 140570112038720, + "relativeCreated": 59.01288986206055, + "thread": 139834866980672, "threadName": "MainThread" } ], - "msecs": 394.66404914855957, + "msecs": 30.083894729614258, "msg": "Work routine executed the 2nd time to do the state change. Defined Transitions are: False->state_a (0.0s); True->state_c (0.0s)", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_transitions.py", - "process": 8622, + "pathname": "src/tests/test_transitions.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 29.606103897094727, - "thread": 140570112038720, + "relativeCreated": 59.25488471984863, + "thread": 139834866980672, "threadName": "MainThread", - "time_consumption": 4.410743713378906e-05 + "time_consumption": 0.00024199485778808594 }, { "args": [ "'state_c'", "" ], - "asctime": "2019-12-27 08:39:27,394", - "created": 1577432367.394802, + "asctime": "2020-06-16 09:01:50,030", + "created": 1592290910.030894, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2645,8 +2678,8 @@ "'state_c'", "" ], - "asctime": "2019-12-27 08:39:27,394", - "created": 1577432367.394725, + "asctime": "2020-06-16 09:01:50,030", + "created": 1592290910.030396, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2656,14 +2689,14 @@ "lineno": 22, "message": "Result (State after 2nd execution of work method): 'state_c' ()", "module": "test", - "msecs": 394.72508430480957, + "msecs": 30.395984649658203, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 29.667139053344727, - "thread": 140570112038720, + "relativeCreated": 59.56697463989258, + "thread": 139834866980672, "threadName": "MainThread" }, { @@ -2672,8 +2705,8 @@ "'state_c'", "" ], - "asctime": "2019-12-27 08:39:27,394", - "created": 1577432367.394764, + "asctime": "2020-06-16 09:01:50,030", + "created": 1592290910.030679, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2683,32 +2716,32 @@ "lineno": 26, "message": "Expectation (State after 2nd execution of work method): result = 'state_c' ()", "module": "test", - "msecs": 394.7639465332031, + "msecs": 30.678987503051758, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 29.70600128173828, - "thread": 140570112038720, + "relativeCreated": 59.84997749328613, + "thread": 139834866980672, "threadName": "MainThread" } ], - "msecs": 394.8020935058594, + "msecs": 30.894041061401367, "msg": "State after 2nd execution of work method is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 29.74414825439453, - "thread": 140570112038720, + "relativeCreated": 60.06503105163574, + "thread": 139834866980672, "threadName": "MainThread", - "time_consumption": 3.814697265625e-05 + "time_consumption": 0.00021505355834960938 }, { "args": [], - "asctime": "2019-12-27 08:39:27,394", - "created": 1577432367.394861, + "asctime": "2020-06-16 09:01:50,031", + "created": 1592290910.03135, "exc_info": null, "exc_text": null, "filename": "test_transitions.py", @@ -2719,14 +2752,14 @@ "message": "Work routine executed the 3rd time with no effect. No Transitions starting from state_c (dead end)", "module": "test_transitions", "moduleLogger": [], - "msecs": 394.86098289489746, + "msecs": 31.349897384643555, "msg": "Work routine executed the 3rd time with no effect. No Transitions starting from state_c (dead end)", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_transitions.py", - "process": 8622, + "pathname": "src/tests/test_transitions.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 29.803037643432617, - "thread": 140570112038720, + "relativeCreated": 60.52088737487793, + "thread": 139834866980672, "threadName": "MainThread", "time_consumption": 0.0 }, @@ -2735,8 +2768,8 @@ "'state_c'", "" ], - "asctime": "2019-12-27 08:39:27,395", - "created": 1577432367.395003, + "asctime": "2020-06-16 09:01:50,031", + "created": 1592290910.031887, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2753,8 +2786,8 @@ "'state_c'", "" ], - "asctime": "2019-12-27 08:39:27,394", - "created": 1577432367.394922, + "asctime": "2020-06-16 09:01:50,031", + "created": 1592290910.031633, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2764,14 +2797,14 @@ "lineno": 22, "message": "Result (State after 3rd execution of work method): 'state_c' ()", "module": "test", - "msecs": 394.92201805114746, + "msecs": 31.63290023803711, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 29.864072799682617, - "thread": 140570112038720, + "relativeCreated": 60.803890228271484, + "thread": 139834866980672, "threadName": "MainThread" }, { @@ -2780,8 +2813,8 @@ "'state_c'", "" ], - "asctime": "2019-12-27 08:39:27,394", - "created": 1577432367.39496, + "asctime": "2020-06-16 09:01:50,031", + "created": 1592290910.031771, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2791,39 +2824,418 @@ "lineno": 26, "message": "Expectation (State after 3rd execution of work method): result = 'state_c' ()", "module": "test", - "msecs": 394.9599266052246, + "msecs": 31.770944595336914, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 29.901981353759766, - "thread": 140570112038720, + "relativeCreated": 60.94193458557129, + "thread": 139834866980672, "threadName": "MainThread" } ], - "msecs": 395.003080368042, + "msecs": 31.887054443359375, "msg": "State after 3rd execution of work method is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 29.94513511657715, - "thread": 140570112038720, + "relativeCreated": 61.05804443359375, + "thread": 139834866980672, "threadName": "MainThread", - "time_consumption": 4.315376281738281e-05 + "time_consumption": 0.00011610984802246094 } ], - "thread": 140570112038720, + "thread": 139834866980672, "threadName": "MainThread", - "time_consumption": 0.0010790824890136719, - "time_finished": "2019-12-27 08:39:27,395", - "time_start": "2019-12-27 08:39:27,393" + "time_consumption": 0.004096031188964844, + "time_finished": "2020-06-16 09:01:50,031", + "time_start": "2020-06-16 09:01:50,027" + }, + "_QofFgK-aEeqZm7ouFR1drQ": { + "args": null, + "asctime": "2020-06-16 09:01:51,683", + "created": 1592290911.683502, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "testrun", + "levelname": "INFO", + "levelno": 20, + "lineno": 47, + "message": "_QofFgK-aEeqZm7ouFR1drQ", + "module": "__init__", + "moduleLogger": [], + "msecs": 683.5019588470459, + "msg": "_QofFgK-aEeqZm7ouFR1drQ", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/unittest/state_machine/unittest/src/tests/__init__.py", + "process": 11803, + "processName": "MainProcess", + "relativeCreated": 1712.6729488372803, + "testcaseLogger": [ + { + "args": [], + "asctime": "2020-06-16 09:01:51,684", + "created": 1592290911.684183, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "report", + "levelname": "INFO", + "levelno": 20, + "lineno": 166, + "message": "Callback execution order: Values and number of submitted values is correct. See detailed log for more information.", + "module": "test", + "moduleLogger": [ + { + "args": [ + "StateMachine:", + "'__init__'", + "None", + "'state_a'" + ], + "asctime": "2020-06-16 09:01:51,683", + "created": 1592290911.683587, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__set_state__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 176, + "message": "StateMachine: State change ('__init__'): None -> 'state_a'", + "module": "__init__", + "msecs": 683.5870742797852, + "msg": "%s State change (%s): %s -> %s", + "name": "STATE_MACHINE", + "pathname": "src/state_machine/__init__.py", + "process": 11803, + "processName": "MainProcess", + "relativeCreated": 1712.7580642700195, + "thread": 139834866980672, + "threadName": "MainThread" + }, + { + "args": [ + "StateMachine:", + "'condition_a'", + "'state_a'", + "'state_b'" + ], + "asctime": "2020-06-16 09:01:51,683", + "created": 1592290911.683671, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__set_state__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 176, + "message": "StateMachine: State change ('condition_a'): 'state_a' -> 'state_b'", + "module": "__init__", + "msecs": 683.6709976196289, + "msg": "%s State change (%s): %s -> %s", + "name": "STATE_MACHINE", + "pathname": "src/state_machine/__init__.py", + "process": 11803, + "processName": "MainProcess", + "relativeCreated": 1712.8419876098633, + "thread": 139834866980672, + "threadName": "MainThread" + }, + { + "args": [ + 0, + "unittest.test", + "report_value" + ], + "asctime": "2020-06-16 09:01:51,683", + "created": 1592290911.683724, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__set_state__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 195, + "message": "Executing callback 0 - unittest.test.report_value", + "module": "__init__", + "msecs": 683.7239265441895, + "msg": "Executing callback %d - %s.%s", + "name": "STATE_MACHINE", + "pathname": "src/state_machine/__init__.py", + "process": 11803, + "processName": "MainProcess", + "relativeCreated": 1712.8949165344238, + "thread": 139834866980672, + "threadName": "MainThread" + }, + { + "args": [ + 1, + "unittest.test", + "report_value" + ], + "asctime": "2020-06-16 09:01:51,683", + "created": 1592290911.683769, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__set_state__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 195, + "message": "Executing callback 1 - unittest.test.report_value", + "module": "__init__", + "msecs": 683.7689876556396, + "msg": "Executing callback %d - %s.%s", + "name": "STATE_MACHINE", + "pathname": "src/state_machine/__init__.py", + "process": 11803, + "processName": "MainProcess", + "relativeCreated": 1712.939977645874, + "thread": 139834866980672, + "threadName": "MainThread" + }, + { + "args": [ + "Callback execution order", + "[ 'specific callback', 'nonspecific callback' ]", + "" + ], + "asctime": "2020-06-16 09:01:51,683", + "created": 1592290911.683822, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Callback execution order): [ 'specific callback', 'nonspecific callback' ] ()", + "module": "test", + "msecs": 683.8219165802002, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 11803, + "processName": "MainProcess", + "relativeCreated": 1712.9929065704346, + "thread": 139834866980672, + "threadName": "MainThread" + }, + { + "args": [ + "Callback execution order", + "[ 'specific callback', 'nonspecific callback' ]", + "" + ], + "asctime": "2020-06-16 09:01:51,683", + "created": 1592290911.683869, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Callback execution order): result = [ 'specific callback', 'nonspecific callback' ] ()", + "module": "test", + "msecs": 683.8688850402832, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 11803, + "processName": "MainProcess", + "relativeCreated": 1713.0398750305176, + "thread": 139834866980672, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 1", + "'specific callback'", + "" + ], + "asctime": "2020-06-16 09:01:51,683", + "created": 1592290911.683916, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Submitted value number 1): 'specific callback' ()", + "module": "test", + "msecs": 683.9160919189453, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 11803, + "processName": "MainProcess", + "relativeCreated": 1713.0870819091797, + "thread": 139834866980672, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 1", + "'specific callback'", + "" + ], + "asctime": "2020-06-16 09:01:51,683", + "created": 1592290911.683962, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Submitted value number 1): result = 'specific callback' ()", + "module": "test", + "msecs": 683.9621067047119, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 11803, + "processName": "MainProcess", + "relativeCreated": 1713.1330966949463, + "thread": 139834866980672, + "threadName": "MainThread" + }, + { + "args": [ + "'specific callback'", + "" + ], + "asctime": "2020-06-16 09:01:51,684", + "created": 1592290911.684008, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Submitted value number 1 is correct (Content 'specific callback' and Type is ).", + "module": "test", + "msecs": 684.0078830718994, + "msg": "Submitted value number 1 is correct (Content %s and Type is %s).", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 11803, + "processName": "MainProcess", + "relativeCreated": 1713.1788730621338, + "thread": 139834866980672, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 2", + "'nonspecific callback'", + "" + ], + "asctime": "2020-06-16 09:01:51,684", + "created": 1592290911.684055, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Submitted value number 2): 'nonspecific callback' ()", + "module": "test", + "msecs": 684.0550899505615, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 11803, + "processName": "MainProcess", + "relativeCreated": 1713.226079940796, + "thread": 139834866980672, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 2", + "'nonspecific callback'", + "" + ], + "asctime": "2020-06-16 09:01:51,684", + "created": 1592290911.684096, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Submitted value number 2): result = 'nonspecific callback' ()", + "module": "test", + "msecs": 684.096097946167, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 11803, + "processName": "MainProcess", + "relativeCreated": 1713.2670879364014, + "thread": 139834866980672, + "threadName": "MainThread" + }, + { + "args": [ + "'nonspecific callback'", + "" + ], + "asctime": "2020-06-16 09:01:51,684", + "created": 1592290911.684141, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Submitted value number 2 is correct (Content 'nonspecific callback' and Type is ).", + "module": "test", + "msecs": 684.1409206390381, + "msg": "Submitted value number 2 is correct (Content %s and Type is %s).", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 11803, + "processName": "MainProcess", + "relativeCreated": 1713.3119106292725, + "thread": 139834866980672, + "threadName": "MainThread" + } + ], + "msecs": 684.18288230896, + "msg": "Callback execution order: Values and number of submitted values is correct. See detailed log for more information.", + "name": "__tLogger__", + "pathname": "src/unittest/test.py", + "process": 11803, + "processName": "MainProcess", + "relativeCreated": 1713.3538722991943, + "thread": 139834866980672, + "threadName": "MainThread", + "time_consumption": 4.1961669921875e-05 + } + ], + "thread": 139834866980672, + "threadName": "MainThread", + "time_consumption": 0.0006809234619140625, + "time_finished": "2020-06-16 09:01:51,684", + "time_start": "2020-06-16 09:01:51,683" }, "_XzMFcHYZEem_kd-7nxt1sg": { "args": null, - "asctime": "2019-12-27 08:39:29,037", - "created": 1577432369.037837, + "asctime": "2020-06-16 09:01:51,669", + "created": 1592290911.669887, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -2834,18 +3246,18 @@ "message": "_XzMFcHYZEem_kd-7nxt1sg", "module": "__init__", "moduleLogger": [], - "msecs": 37.83702850341797, + "msecs": 669.8870658874512, "msg": "_XzMFcHYZEem_kd-7nxt1sg", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/__init__.py", - "process": 8622, + "pathname": "/user_data/data/dirk/prj/unittest/state_machine/unittest/src/tests/__init__.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1672.7790832519531, + "relativeCreated": 1699.0580558776855, "testcaseLogger": [ { "args": [], - "asctime": "2019-12-27 08:39:29,040", - "created": 1577432369.040624, + "asctime": "2020-06-16 09:01:51,671", + "created": 1592290911.671367, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", @@ -2863,33 +3275,33 @@ "None", "'state_a'" ], - "asctime": "2019-12-27 08:39:29,038", - "created": 1577432369.038128, + "asctime": "2020-06-16 09:01:51,670", + "created": 1592290911.670032, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__set_state__", "levelname": "DEBUG", "levelno": 10, - "lineno": 174, + "lineno": 176, "message": "StateMachine: State change ('__init__'): None -> 'state_a'", "module": "__init__", - "msecs": 38.127899169921875, + "msecs": 670.0320243835449, "msg": "%s State change (%s): %s -> %s", "name": "STATE_MACHINE", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/state_machine/__init__.py", - "process": 8622, + "pathname": "src/state_machine/__init__.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1673.069953918457, - "thread": 140570112038720, + "relativeCreated": 1699.2030143737793, + "thread": 139834866980672, "threadName": "MainThread" }, { "args": [ 1 ], - "asctime": "2019-12-27 08:39:29,038", - "created": 1577432369.03838, + "asctime": "2020-06-16 09:01:51,670", + "created": 1592290911.670158, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", @@ -2899,14 +3311,14 @@ "lineno": 55, "message": "Increasing sequence number to 1 caused by sequence progress", "module": "test_callbacks", - "msecs": 38.37990760803223, + "msecs": 670.1579093933105, "msg": "Increasing sequence number to %d caused by sequence progress", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_callbacks.py", - "process": 8622, + "pathname": "src/tests/test_callbacks.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1673.3219623565674, - "thread": 140570112038720, + "relativeCreated": 1699.328899383545, + "thread": 139834866980672, "threadName": "MainThread" }, { @@ -2916,33 +3328,60 @@ "'state_a'", "'state_b'" ], - "asctime": "2019-12-27 08:39:29,038", - "created": 1577432369.038868, + "asctime": "2020-06-16 09:01:51,670", + "created": 1592290911.670383, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__set_state__", "levelname": "DEBUG", "levelno": 10, - "lineno": 174, + "lineno": 176, "message": "StateMachine: State change ('condition_a'): 'state_a' -> 'state_b'", "module": "__init__", - "msecs": 38.867950439453125, + "msecs": 670.3829765319824, "msg": "%s State change (%s): %s -> %s", "name": "STATE_MACHINE", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/state_machine/__init__.py", - "process": 8622, + "pathname": "src/state_machine/__init__.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1673.8100051879883, - "thread": 140570112038720, + "relativeCreated": 1699.5539665222168, + "thread": 139834866980672, + "threadName": "MainThread" + }, + { + "args": [ + 0, + "tests.test_callbacks", + "exec_with_counter" + ], + "asctime": "2020-06-16 09:01:51,670", + "created": 1592290911.670479, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__set_state__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 195, + "message": "Executing callback 0 - tests.test_callbacks.exec_with_counter", + "module": "__init__", + "msecs": 670.4790592193604, + "msg": "Executing callback %d - %s.%s", + "name": "STATE_MACHINE", + "pathname": "src/state_machine/__init__.py", + "process": 11803, + "processName": "MainProcess", + "relativeCreated": 1699.6500492095947, + "thread": 139834866980672, "threadName": "MainThread" }, { "args": [ 2 ], - "asctime": "2019-12-27 08:39:29,039", - "created": 1577432369.039138, + "asctime": "2020-06-16 09:01:51,670", + "created": 1592290911.670571, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", @@ -2952,22 +3391,49 @@ "lineno": 24, "message": "Increasing sequence number to 2 caused by callback_execution", "module": "test_callbacks", - "msecs": 39.138078689575195, + "msecs": 670.5710887908936, "msg": "Increasing sequence number to %d caused by callback_execution", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_callbacks.py", - "process": 8622, + "pathname": "src/tests/test_callbacks.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1674.0801334381104, - "thread": 140570112038720, + "relativeCreated": 1699.742078781128, + "thread": 139834866980672, + "threadName": "MainThread" + }, + { + "args": [ + 1, + "tests.test_callbacks", + "exec_with_counter" + ], + "asctime": "2020-06-16 09:01:51,670", + "created": 1592290911.670657, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__set_state__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 195, + "message": "Executing callback 1 - tests.test_callbacks.exec_with_counter", + "module": "__init__", + "msecs": 670.6569194793701, + "msg": "Executing callback %d - %s.%s", + "name": "STATE_MACHINE", + "pathname": "src/state_machine/__init__.py", + "process": 11803, + "processName": "MainProcess", + "relativeCreated": 1699.8279094696045, + "thread": 139834866980672, "threadName": "MainThread" }, { "args": [ 3 ], - "asctime": "2019-12-27 08:39:29,039", - "created": 1577432369.039325, + "asctime": "2020-06-16 09:01:51,670", + "created": 1592290911.670733, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", @@ -2977,22 +3443,22 @@ "lineno": 24, "message": "Increasing sequence number to 3 caused by callback_execution", "module": "test_callbacks", - "msecs": 39.32499885559082, + "msecs": 670.7329750061035, "msg": "Increasing sequence number to %d caused by callback_execution", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_callbacks.py", - "process": 8622, + "pathname": "src/tests/test_callbacks.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1674.267053604126, - "thread": 140570112038720, + "relativeCreated": 1699.903964996338, + "thread": 139834866980672, "threadName": "MainThread" }, { "args": [ 4 ], - "asctime": "2019-12-27 08:39:29,039", - "created": 1577432369.039501, + "asctime": "2020-06-16 09:01:51,670", + "created": 1592290911.670817, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", @@ -3002,14 +3468,14 @@ "lineno": 55, "message": "Increasing sequence number to 4 caused by sequence progress", "module": "test_callbacks", - "msecs": 39.50095176696777, + "msecs": 670.8168983459473, "msg": "Increasing sequence number to %d caused by sequence progress", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_callbacks.py", - "process": 8622, + "pathname": "src/tests/test_callbacks.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1674.443006515503, - "thread": 140570112038720, + "relativeCreated": 1699.9878883361816, + "thread": 139834866980672, "threadName": "MainThread" }, { @@ -3019,33 +3485,33 @@ "'state_b'", "'state_a'" ], - "asctime": "2019-12-27 08:39:29,039", - "created": 1577432369.039711, + "asctime": "2020-06-16 09:01:51,670", + "created": 1592290911.67092, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__set_state__", "levelname": "DEBUG", "levelno": 10, - "lineno": 174, + "lineno": 176, "message": "StateMachine: State change ('condition_b'): 'state_b' -> 'state_a'", "module": "__init__", - "msecs": 39.71099853515625, + "msecs": 670.9198951721191, "msg": "%s State change (%s): %s -> %s", "name": "STATE_MACHINE", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/state_machine/__init__.py", - "process": 8622, + "pathname": "src/state_machine/__init__.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1674.6530532836914, - "thread": 140570112038720, + "relativeCreated": 1700.0908851623535, + "thread": 139834866980672, "threadName": "MainThread" }, { "args": [ 5 ], - "asctime": "2019-12-27 08:39:29,039", - "created": 1577432369.03988, + "asctime": "2020-06-16 09:01:51,671", + "created": 1592290911.671005, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", @@ -3055,14 +3521,14 @@ "lineno": 55, "message": "Increasing sequence number to 5 caused by sequence progress", "module": "test_callbacks", - "msecs": 39.88003730773926, + "msecs": 671.0050106048584, "msg": "Increasing sequence number to %d caused by sequence progress", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_callbacks.py", - "process": 8622, + "pathname": "src/tests/test_callbacks.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1674.8220920562744, - "thread": 140570112038720, + "relativeCreated": 1700.1760005950928, + "thread": 139834866980672, "threadName": "MainThread" }, { @@ -3072,33 +3538,33 @@ "'state_a'", "'state_b'" ], - "asctime": "2019-12-27 08:39:29,040", - "created": 1577432369.04009, + "asctime": "2020-06-16 09:01:51,671", + "created": 1592290911.671103, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__set_state__", "levelname": "DEBUG", "levelno": 10, - "lineno": 174, + "lineno": 176, "message": "StateMachine: State change ('condition_b'): 'state_a' -> 'state_b'", "module": "__init__", - "msecs": 40.090084075927734, + "msecs": 671.1030006408691, "msg": "%s State change (%s): %s -> %s", "name": "STATE_MACHINE", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/state_machine/__init__.py", - "process": 8622, + "pathname": "src/state_machine/__init__.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1675.032138824463, - "thread": 140570112038720, + "relativeCreated": 1700.2739906311035, + "thread": 139834866980672, "threadName": "MainThread" }, { "args": [ 6 ], - "asctime": "2019-12-27 08:39:29,040", - "created": 1577432369.040259, + "asctime": "2020-06-16 09:01:51,671", + "created": 1592290911.67119, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", @@ -3108,14 +3574,14 @@ "lineno": 55, "message": "Increasing sequence number to 6 caused by sequence progress", "module": "test_callbacks", - "msecs": 40.25888442993164, + "msecs": 671.1900234222412, "msg": "Increasing sequence number to %d caused by sequence progress", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_callbacks.py", - "process": 8622, + "pathname": "src/tests/test_callbacks.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1675.2009391784668, - "thread": 140570112038720, + "relativeCreated": 1700.3610134124756, + "thread": 139834866980672, "threadName": "MainThread" }, { @@ -3125,43 +3591,43 @@ "'state_b'", "'state_c'" ], - "asctime": "2019-12-27 08:39:29,040", - "created": 1577432369.040463, + "asctime": "2020-06-16 09:01:51,671", + "created": 1592290911.671286, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__set_state__", "levelname": "DEBUG", "levelno": 10, - "lineno": 174, + "lineno": 176, "message": "StateMachine: State change ('condition_c'): 'state_b' -> 'state_c'", "module": "__init__", - "msecs": 40.46297073364258, + "msecs": 671.2861061096191, "msg": "%s State change (%s): %s -> %s", "name": "STATE_MACHINE", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/state_machine/__init__.py", - "process": 8622, + "pathname": "src/state_machine/__init__.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1675.4050254821777, - "thread": 140570112038720, + "relativeCreated": 1700.4570960998535, + "thread": 139834866980672, "threadName": "MainThread" } ], - "msecs": 40.62390327453613, + "msecs": 671.3669300079346, "msg": "Running state machine sequence and storing sequence number for each callback", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_callbacks.py", - "process": 8622, + "pathname": "src/tests/test_callbacks.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1675.5659580230713, - "thread": 140570112038720, + "relativeCreated": 1700.537919998169, + "thread": 139834866980672, "threadName": "MainThread", - "time_consumption": 0.0001609325408935547 + "time_consumption": 8.082389831542969e-05 }, { "args": [], - "asctime": "2019-12-27 08:39:29,041", - "created": 1577432369.041703, + "asctime": "2020-06-16 09:01:51,671", + "created": 1592290911.67189, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -3178,8 +3644,8 @@ "[ 1 ]", "" ], - "asctime": "2019-12-27 08:39:29,040", - "created": 1577432369.040898, + "asctime": "2020-06-16 09:01:51,671", + "created": 1592290911.671514, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -3189,14 +3655,14 @@ "lineno": 22, "message": "Result (Execution of state machine callback (1) (state_b, condition_a) identified by a sequence number): [ 1 ] ()", "module": "test", - "msecs": 40.89808464050293, + "msecs": 671.5140342712402, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1675.840139389038, - "thread": 140570112038720, + "relativeCreated": 1700.6850242614746, + "thread": 139834866980672, "threadName": "MainThread" }, { @@ -3205,8 +3671,8 @@ "[ 1 ]", "" ], - "asctime": "2019-12-27 08:39:29,041", - "created": 1577432369.041058, + "asctime": "2020-06-16 09:01:51,671", + "created": 1592290911.671594, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -3216,14 +3682,14 @@ "lineno": 26, "message": "Expectation (Execution of state machine callback (1) (state_b, condition_a) identified by a sequence number): result = [ 1 ] ()", "module": "test", - "msecs": 41.05806350708008, + "msecs": 671.5939044952393, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1676.0001182556152, - "thread": 140570112038720, + "relativeCreated": 1700.7648944854736, + "thread": 139834866980672, "threadName": "MainThread" }, { @@ -3232,8 +3698,8 @@ "1", "" ], - "asctime": "2019-12-27 08:39:29,041", - "created": 1577432369.041229, + "asctime": "2020-06-16 09:01:51,671", + "created": 1592290911.671678, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -3243,14 +3709,14 @@ "lineno": 22, "message": "Result (Submitted value number 1): 1 ()", "module": "test", - "msecs": 41.2290096282959, + "msecs": 671.6780662536621, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1676.171064376831, - "thread": 140570112038720, + "relativeCreated": 1700.8490562438965, + "thread": 139834866980672, "threadName": "MainThread" }, { @@ -3259,8 +3725,8 @@ "1", "" ], - "asctime": "2019-12-27 08:39:29,041", - "created": 1577432369.0414, + "asctime": "2020-06-16 09:01:51,671", + "created": 1592290911.671749, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -3270,14 +3736,14 @@ "lineno": 26, "message": "Expectation (Submitted value number 1): result = 1 ()", "module": "test", - "msecs": 41.39995574951172, + "msecs": 671.7491149902344, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1676.3420104980469, - "thread": 140570112038720, + "relativeCreated": 1700.9201049804688, + "thread": 139834866980672, "threadName": "MainThread" }, { @@ -3285,8 +3751,8 @@ "1", "" ], - "asctime": "2019-12-27 08:39:29,041", - "created": 1577432369.041553, + "asctime": "2020-06-16 09:01:51,671", + "created": 1592290911.671821, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -3296,32 +3762,32 @@ "lineno": 142, "message": "Submitted value number 1 is correct (Content 1 and Type is ).", "module": "test", - "msecs": 41.55302047729492, + "msecs": 671.821117401123, "msg": "Submitted value number 1 is correct (Content %s and Type is %s).", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1676.49507522583, - "thread": 140570112038720, + "relativeCreated": 1700.9921073913574, + "thread": 139834866980672, "threadName": "MainThread" } ], - "msecs": 41.702985763549805, + "msecs": 671.8900203704834, "msg": "Execution of state machine callback (1) (state_b, condition_a) identified by a sequence number: Values and number of submitted values is correct. See detailed log for more information.", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1676.645040512085, - "thread": 140570112038720, + "relativeCreated": 1701.0610103607178, + "thread": 139834866980672, "threadName": "MainThread", - "time_consumption": 0.0001499652862548828 + "time_consumption": 6.890296936035156e-05 }, { "args": [], - "asctime": "2019-12-27 08:39:29,042", - "created": 1577432369.042696, + "asctime": "2020-06-16 09:01:51,672", + "created": 1592290911.672391, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -3338,8 +3804,8 @@ "[ 2 ]", "" ], - "asctime": "2019-12-27 08:39:29,041", - "created": 1577432369.041968, + "asctime": "2020-06-16 09:01:51,672", + "created": 1592290911.672017, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -3349,14 +3815,14 @@ "lineno": 22, "message": "Result (Execution of state machine callback (2) (state_b, condition_a) identified by a sequence number): [ 2 ] ()", "module": "test", - "msecs": 41.96810722351074, + "msecs": 672.0170974731445, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1676.910161972046, - "thread": 140570112038720, + "relativeCreated": 1701.188087463379, + "thread": 139834866980672, "threadName": "MainThread" }, { @@ -3365,8 +3831,8 @@ "[ 2 ]", "" ], - "asctime": "2019-12-27 08:39:29,042", - "created": 1577432369.042121, + "asctime": "2020-06-16 09:01:51,672", + "created": 1592290911.672091, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -3376,14 +3842,14 @@ "lineno": 26, "message": "Expectation (Execution of state machine callback (2) (state_b, condition_a) identified by a sequence number): result = [ 2 ] ()", "module": "test", - "msecs": 42.120933532714844, + "msecs": 672.091007232666, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1677.06298828125, - "thread": 140570112038720, + "relativeCreated": 1701.2619972229004, + "thread": 139834866980672, "threadName": "MainThread" }, { @@ -3392,8 +3858,8 @@ "2", "" ], - "asctime": "2019-12-27 08:39:29,042", - "created": 1577432369.042274, + "asctime": "2020-06-16 09:01:51,672", + "created": 1592290911.67217, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -3403,14 +3869,14 @@ "lineno": 22, "message": "Result (Submitted value number 1): 2 ()", "module": "test", - "msecs": 42.27399826049805, + "msecs": 672.1699237823486, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1677.2160530090332, - "thread": 140570112038720, + "relativeCreated": 1701.340913772583, + "thread": 139834866980672, "threadName": "MainThread" }, { @@ -3419,8 +3885,8 @@ "2", "" ], - "asctime": "2019-12-27 08:39:29,042", - "created": 1577432369.042419, + "asctime": "2020-06-16 09:01:51,672", + "created": 1592290911.672251, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -3430,14 +3896,14 @@ "lineno": 26, "message": "Expectation (Submitted value number 1): result = 2 ()", "module": "test", - "msecs": 42.4189567565918, + "msecs": 672.2509860992432, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1677.361011505127, - "thread": 140570112038720, + "relativeCreated": 1701.4219760894775, + "thread": 139834866980672, "threadName": "MainThread" }, { @@ -3445,8 +3911,8 @@ "2", "" ], - "asctime": "2019-12-27 08:39:29,042", - "created": 1577432369.04256, + "asctime": "2020-06-16 09:01:51,672", + "created": 1592290911.672323, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -3456,39 +3922,39 @@ "lineno": 142, "message": "Submitted value number 1 is correct (Content 2 and Type is ).", "module": "test", - "msecs": 42.56010055541992, + "msecs": 672.3229885101318, "msg": "Submitted value number 1 is correct (Content %s and Type is %s).", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1677.502155303955, - "thread": 140570112038720, + "relativeCreated": 1701.4939785003662, + "thread": 139834866980672, "threadName": "MainThread" } ], - "msecs": 42.69599914550781, + "msecs": 672.3909378051758, "msg": "Execution of state machine callback (2) (state_b, condition_a) identified by a sequence number: Values and number of submitted values is correct. See detailed log for more information.", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1677.638053894043, - "thread": 140570112038720, + "relativeCreated": 1701.5619277954102, + "thread": 139834866980672, "threadName": "MainThread", - "time_consumption": 0.00013589859008789062 + "time_consumption": 6.794929504394531e-05 } ], - "thread": 140570112038720, + "thread": 139834866980672, "threadName": "MainThread", - "time_consumption": 0.004858970642089844, - "time_finished": "2019-12-27 08:39:29,042", - "time_start": "2019-12-27 08:39:29,037" + "time_consumption": 0.0025038719177246094, + "time_finished": "2020-06-16 09:01:51,672", + "time_start": "2020-06-16 09:01:51,669" }, "_YrdgQHbUEemIm_1APUisDQ": { "args": null, - "asctime": "2019-12-27 08:39:29,043", - "created": 1577432369.043111, + "asctime": "2020-06-16 09:01:51,672", + "created": 1592290911.672615, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -3499,18 +3965,18 @@ "message": "_YrdgQHbUEemIm_1APUisDQ", "module": "__init__", "moduleLogger": [], - "msecs": 43.11108589172363, + "msecs": 672.6150512695312, "msg": "_YrdgQHbUEemIm_1APUisDQ", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/__init__.py", - "process": 8622, + "pathname": "/user_data/data/dirk/prj/unittest/state_machine/unittest/src/tests/__init__.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1678.0531406402588, + "relativeCreated": 1701.7860412597656, "testcaseLogger": [ { "args": [], - "asctime": "2019-12-27 08:39:29,045", - "created": 1577432369.045525, + "asctime": "2020-06-16 09:01:51,674", + "created": 1592290911.674263, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", @@ -3528,33 +3994,33 @@ "None", "'state_a'" ], - "asctime": "2019-12-27 08:39:29,043", - "created": 1577432369.043374, + "asctime": "2020-06-16 09:01:51,672", + "created": 1592290911.672762, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__set_state__", "levelname": "DEBUG", "levelno": 10, - "lineno": 174, + "lineno": 176, "message": "StateMachine: State change ('__init__'): None -> 'state_a'", "module": "__init__", - "msecs": 43.374061584472656, + "msecs": 672.7619171142578, "msg": "%s State change (%s): %s -> %s", "name": "STATE_MACHINE", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/state_machine/__init__.py", - "process": 8622, + "pathname": "src/state_machine/__init__.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1678.3161163330078, - "thread": 140570112038720, + "relativeCreated": 1701.9329071044922, + "thread": 139834866980672, "threadName": "MainThread" }, { "args": [ 1 ], - "asctime": "2019-12-27 08:39:29,043", - "created": 1577432369.043583, + "asctime": "2020-06-16 09:01:51,672", + "created": 1592290911.672873, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", @@ -3564,14 +4030,14 @@ "lineno": 55, "message": "Increasing sequence number to 1 caused by sequence progress", "module": "test_callbacks", - "msecs": 43.582916259765625, + "msecs": 672.8730201721191, "msg": "Increasing sequence number to %d caused by sequence progress", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_callbacks.py", - "process": 8622, + "pathname": "src/tests/test_callbacks.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1678.5249710083008, - "thread": 140570112038720, + "relativeCreated": 1702.0440101623535, + "thread": 139834866980672, "threadName": "MainThread" }, { @@ -3581,33 +4047,33 @@ "'state_a'", "'state_b'" ], - "asctime": "2019-12-27 08:39:29,043", - "created": 1577432369.043826, + "asctime": "2020-06-16 09:01:51,672", + "created": 1592290911.672996, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__set_state__", "levelname": "DEBUG", "levelno": 10, - "lineno": 174, + "lineno": 176, "message": "StateMachine: State change ('condition_a'): 'state_a' -> 'state_b'", "module": "__init__", - "msecs": 43.82610321044922, + "msecs": 672.9960441589355, "msg": "%s State change (%s): %s -> %s", "name": "STATE_MACHINE", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/state_machine/__init__.py", - "process": 8622, + "pathname": "src/state_machine/__init__.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1678.7681579589844, - "thread": 140570112038720, + "relativeCreated": 1702.16703414917, + "thread": 139834866980672, "threadName": "MainThread" }, { "args": [ 2 ], - "asctime": "2019-12-27 08:39:29,044", - "created": 1577432369.044012, + "asctime": "2020-06-16 09:01:51,673", + "created": 1592290911.673087, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", @@ -3617,14 +4083,14 @@ "lineno": 55, "message": "Increasing sequence number to 2 caused by sequence progress", "module": "test_callbacks", - "msecs": 44.01206970214844, + "msecs": 673.0868816375732, "msg": "Increasing sequence number to %d caused by sequence progress", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_callbacks.py", - "process": 8622, + "pathname": "src/tests/test_callbacks.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1678.9541244506836, - "thread": 140570112038720, + "relativeCreated": 1702.2578716278076, + "thread": 139834866980672, "threadName": "MainThread" }, { @@ -3634,33 +4100,60 @@ "'state_b'", "'state_a'" ], - "asctime": "2019-12-27 08:39:29,044", - "created": 1577432369.044218, + "asctime": "2020-06-16 09:01:51,673", + "created": 1592290911.673197, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__set_state__", "levelname": "DEBUG", "levelno": 10, - "lineno": 174, + "lineno": 176, "message": "StateMachine: State change ('condition_b'): 'state_b' -> 'state_a'", "module": "__init__", - "msecs": 44.21806335449219, + "msecs": 673.1970310211182, "msg": "%s State change (%s): %s -> %s", "name": "STATE_MACHINE", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/state_machine/__init__.py", - "process": 8622, + "pathname": "src/state_machine/__init__.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1679.1601181030273, - "thread": 140570112038720, + "relativeCreated": 1702.3680210113525, + "thread": 139834866980672, + "threadName": "MainThread" + }, + { + "args": [ + 0, + "tests.test_callbacks", + "exec_with_counter" + ], + "asctime": "2020-06-16 09:01:51,673", + "created": 1592290911.67328, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__set_state__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 195, + "message": "Executing callback 0 - tests.test_callbacks.exec_with_counter", + "module": "__init__", + "msecs": 673.2800006866455, + "msg": "Executing callback %d - %s.%s", + "name": "STATE_MACHINE", + "pathname": "src/state_machine/__init__.py", + "process": 11803, + "processName": "MainProcess", + "relativeCreated": 1702.4509906768799, + "thread": 139834866980672, "threadName": "MainThread" }, { "args": [ 3 ], - "asctime": "2019-12-27 08:39:29,044", - "created": 1577432369.044381, + "asctime": "2020-06-16 09:01:51,673", + "created": 1592290911.673364, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", @@ -3670,22 +4163,49 @@ "lineno": 24, "message": "Increasing sequence number to 3 caused by callback_execution", "module": "test_callbacks", - "msecs": 44.380903244018555, + "msecs": 673.3639240264893, "msg": "Increasing sequence number to %d caused by callback_execution", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_callbacks.py", - "process": 8622, + "pathname": "src/tests/test_callbacks.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1679.3229579925537, - "thread": 140570112038720, + "relativeCreated": 1702.5349140167236, + "thread": 139834866980672, + "threadName": "MainThread" + }, + { + "args": [ + 1, + "tests.test_callbacks", + "exec_with_counter" + ], + "asctime": "2020-06-16 09:01:51,673", + "created": 1592290911.673443, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__set_state__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 195, + "message": "Executing callback 1 - tests.test_callbacks.exec_with_counter", + "module": "__init__", + "msecs": 673.443078994751, + "msg": "Executing callback %d - %s.%s", + "name": "STATE_MACHINE", + "pathname": "src/state_machine/__init__.py", + "process": 11803, + "processName": "MainProcess", + "relativeCreated": 1702.6140689849854, + "thread": 139834866980672, "threadName": "MainThread" }, { "args": [ 4 ], - "asctime": "2019-12-27 08:39:29,044", - "created": 1577432369.044542, + "asctime": "2020-06-16 09:01:51,673", + "created": 1592290911.673512, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", @@ -3695,22 +4215,22 @@ "lineno": 24, "message": "Increasing sequence number to 4 caused by callback_execution", "module": "test_callbacks", - "msecs": 44.54207420349121, + "msecs": 673.5119819641113, "msg": "Increasing sequence number to %d caused by callback_execution", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_callbacks.py", - "process": 8622, + "pathname": "src/tests/test_callbacks.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1679.4841289520264, - "thread": 140570112038720, + "relativeCreated": 1702.6829719543457, + "thread": 139834866980672, "threadName": "MainThread" }, { "args": [ 5 ], - "asctime": "2019-12-27 08:39:29,044", - "created": 1577432369.044706, + "asctime": "2020-06-16 09:01:51,673", + "created": 1592290911.673599, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", @@ -3720,14 +4240,14 @@ "lineno": 55, "message": "Increasing sequence number to 5 caused by sequence progress", "module": "test_callbacks", - "msecs": 44.706106185913086, + "msecs": 673.5990047454834, "msg": "Increasing sequence number to %d caused by sequence progress", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_callbacks.py", - "process": 8622, + "pathname": "src/tests/test_callbacks.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1679.6481609344482, - "thread": 140570112038720, + "relativeCreated": 1702.7699947357178, + "thread": 139834866980672, "threadName": "MainThread" }, { @@ -3737,33 +4257,60 @@ "'state_a'", "'state_b'" ], - "asctime": "2019-12-27 08:39:29,044", - "created": 1577432369.044909, + "asctime": "2020-06-16 09:01:51,673", + "created": 1592290911.673696, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__set_state__", "levelname": "DEBUG", "levelno": 10, - "lineno": 174, + "lineno": 176, "message": "StateMachine: State change ('condition_b'): 'state_a' -> 'state_b'", "module": "__init__", - "msecs": 44.909000396728516, + "msecs": 673.6960411071777, "msg": "%s State change (%s): %s -> %s", "name": "STATE_MACHINE", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/state_machine/__init__.py", - "process": 8622, + "pathname": "src/state_machine/__init__.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1679.8510551452637, - "thread": 140570112038720, + "relativeCreated": 1702.867031097412, + "thread": 139834866980672, + "threadName": "MainThread" + }, + { + "args": [ + 0, + "tests.test_callbacks", + "exec_with_counter" + ], + "asctime": "2020-06-16 09:01:51,673", + "created": 1592290911.673775, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__set_state__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 195, + "message": "Executing callback 0 - tests.test_callbacks.exec_with_counter", + "module": "__init__", + "msecs": 673.7749576568604, + "msg": "Executing callback %d - %s.%s", + "name": "STATE_MACHINE", + "pathname": "src/state_machine/__init__.py", + "process": 11803, + "processName": "MainProcess", + "relativeCreated": 1702.9459476470947, + "thread": 139834866980672, "threadName": "MainThread" }, { "args": [ 6 ], - "asctime": "2019-12-27 08:39:29,045", - "created": 1577432369.045064, + "asctime": "2020-06-16 09:01:51,673", + "created": 1592290911.673846, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", @@ -3773,22 +4320,49 @@ "lineno": 24, "message": "Increasing sequence number to 6 caused by callback_execution", "module": "test_callbacks", - "msecs": 45.06397247314453, + "msecs": 673.8460063934326, "msg": "Increasing sequence number to %d caused by callback_execution", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_callbacks.py", - "process": 8622, + "pathname": "src/tests/test_callbacks.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1680.0060272216797, - "thread": 140570112038720, + "relativeCreated": 1703.016996383667, + "thread": 139834866980672, + "threadName": "MainThread" + }, + { + "args": [ + 1, + "tests.test_callbacks", + "exec_with_counter" + ], + "asctime": "2020-06-16 09:01:51,673", + "created": 1592290911.673925, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__set_state__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 195, + "message": "Executing callback 1 - tests.test_callbacks.exec_with_counter", + "module": "__init__", + "msecs": 673.9249229431152, + "msg": "Executing callback %d - %s.%s", + "name": "STATE_MACHINE", + "pathname": "src/state_machine/__init__.py", + "process": 11803, + "processName": "MainProcess", + "relativeCreated": 1703.0959129333496, + "thread": 139834866980672, "threadName": "MainThread" }, { "args": [ 7 ], - "asctime": "2019-12-27 08:39:29,045", - "created": 1577432369.045235, + "asctime": "2020-06-16 09:01:51,673", + "created": 1592290911.673994, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", @@ -3798,22 +4372,22 @@ "lineno": 24, "message": "Increasing sequence number to 7 caused by callback_execution", "module": "test_callbacks", - "msecs": 45.23491859436035, + "msecs": 673.9940643310547, "msg": "Increasing sequence number to %d caused by callback_execution", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_callbacks.py", - "process": 8622, + "pathname": "src/tests/test_callbacks.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1680.1769733428955, - "thread": 140570112038720, + "relativeCreated": 1703.165054321289, + "thread": 139834866980672, "threadName": "MainThread" }, { "args": [ 8 ], - "asctime": "2019-12-27 08:39:29,045", - "created": 1577432369.045407, + "asctime": "2020-06-16 09:01:51,674", + "created": 1592290911.674079, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", @@ -3823,14 +4397,14 @@ "lineno": 55, "message": "Increasing sequence number to 8 caused by sequence progress", "module": "test_callbacks", - "msecs": 45.40705680847168, + "msecs": 674.0789413452148, "msg": "Increasing sequence number to %d caused by sequence progress", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_callbacks.py", - "process": 8622, + "pathname": "src/tests/test_callbacks.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1680.3491115570068, - "thread": 140570112038720, + "relativeCreated": 1703.2499313354492, + "thread": 139834866980672, "threadName": "MainThread" }, { @@ -3840,43 +4414,43 @@ "'state_b'", "'state_c'" ], - "asctime": "2019-12-27 08:39:29,045", - "created": 1577432369.045473, + "asctime": "2020-06-16 09:01:51,674", + "created": 1592290911.674175, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__set_state__", "levelname": "DEBUG", "levelno": 10, - "lineno": 174, + "lineno": 176, "message": "StateMachine: State change ('condition_c'): 'state_b' -> 'state_c'", "module": "__init__", - "msecs": 45.47309875488281, + "msecs": 674.1750240325928, "msg": "%s State change (%s): %s -> %s", "name": "STATE_MACHINE", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/state_machine/__init__.py", - "process": 8622, + "pathname": "src/state_machine/__init__.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1680.415153503418, - "thread": 140570112038720, + "relativeCreated": 1703.3460140228271, + "thread": 139834866980672, "threadName": "MainThread" } ], - "msecs": 45.52507400512695, + "msecs": 674.2630004882812, "msg": "Running state machine sequence and storing sequence number for each callback", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_callbacks.py", - "process": 8622, + "pathname": "src/tests/test_callbacks.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1680.467128753662, - "thread": 140570112038720, + "relativeCreated": 1703.4339904785156, + "thread": 139834866980672, "threadName": "MainThread", - "time_consumption": 5.1975250244140625e-05 + "time_consumption": 8.797645568847656e-05 }, { "args": [], - "asctime": "2019-12-27 08:39:29,046", - "created": 1577432369.046, + "asctime": "2020-06-16 09:01:51,675", + "created": 1592290911.675014, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -3893,8 +4467,8 @@ "[ 2, 5 ]", "" ], - "asctime": "2019-12-27 08:39:29,045", - "created": 1577432369.045611, + "asctime": "2020-06-16 09:01:51,674", + "created": 1592290911.674405, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -3904,14 +4478,14 @@ "lineno": 22, "message": "Result (Execution of state machine callback (1) (all_transitions, condition_b) identified by a sequence number): [ 2, 5 ] ()", "module": "test", - "msecs": 45.610904693603516, + "msecs": 674.4050979614258, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1680.5529594421387, - "thread": 140570112038720, + "relativeCreated": 1703.5760879516602, + "thread": 139834866980672, "threadName": "MainThread" }, { @@ -3920,8 +4494,8 @@ "[ 2, 5 ]", "" ], - "asctime": "2019-12-27 08:39:29,045", - "created": 1577432369.045663, + "asctime": "2020-06-16 09:01:51,674", + "created": 1592290911.674485, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -3931,14 +4505,14 @@ "lineno": 26, "message": "Expectation (Execution of state machine callback (1) (all_transitions, condition_b) identified by a sequence number): result = [ 2, 5 ] ()", "module": "test", - "msecs": 45.66311836242676, + "msecs": 674.4849681854248, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1680.605173110962, - "thread": 140570112038720, + "relativeCreated": 1703.6559581756592, + "thread": 139834866980672, "threadName": "MainThread" }, { @@ -3947,8 +4521,8 @@ "2", "" ], - "asctime": "2019-12-27 08:39:29,045", - "created": 1577432369.045718, + "asctime": "2020-06-16 09:01:51,674", + "created": 1592290911.674573, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -3958,14 +4532,14 @@ "lineno": 22, "message": "Result (Submitted value number 1): 2 ()", "module": "test", - "msecs": 45.71795463562012, + "msecs": 674.5729446411133, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1680.6600093841553, - "thread": 140570112038720, + "relativeCreated": 1703.7439346313477, + "thread": 139834866980672, "threadName": "MainThread" }, { @@ -3974,8 +4548,8 @@ "2", "" ], - "asctime": "2019-12-27 08:39:29,045", - "created": 1577432369.045764, + "asctime": "2020-06-16 09:01:51,674", + "created": 1592290911.674649, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -3985,14 +4559,14 @@ "lineno": 26, "message": "Expectation (Submitted value number 1): result = 2 ()", "module": "test", - "msecs": 45.76396942138672, + "msecs": 674.6490001678467, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1680.7060241699219, - "thread": 140570112038720, + "relativeCreated": 1703.819990158081, + "thread": 139834866980672, "threadName": "MainThread" }, { @@ -4000,8 +4574,8 @@ "2", "" ], - "asctime": "2019-12-27 08:39:29,045", - "created": 1577432369.045815, + "asctime": "2020-06-16 09:01:51,674", + "created": 1592290911.674727, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -4011,14 +4585,14 @@ "lineno": 142, "message": "Submitted value number 1 is correct (Content 2 and Type is ).", "module": "test", - "msecs": 45.81499099731445, + "msecs": 674.7269630432129, "msg": "Submitted value number 1 is correct (Content %s and Type is %s).", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1680.7570457458496, - "thread": 140570112038720, + "relativeCreated": 1703.8979530334473, + "thread": 139834866980672, "threadName": "MainThread" }, { @@ -4027,8 +4601,8 @@ "5", "" ], - "asctime": "2019-12-27 08:39:29,045", - "created": 1577432369.045863, + "asctime": "2020-06-16 09:01:51,674", + "created": 1592290911.6748, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -4038,14 +4612,14 @@ "lineno": 22, "message": "Result (Submitted value number 2): 5 ()", "module": "test", - "msecs": 45.86291313171387, + "msecs": 674.799919128418, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1680.804967880249, - "thread": 140570112038720, + "relativeCreated": 1703.9709091186523, + "thread": 139834866980672, "threadName": "MainThread" }, { @@ -4054,8 +4628,8 @@ "5", "" ], - "asctime": "2019-12-27 08:39:29,045", - "created": 1577432369.04591, + "asctime": "2020-06-16 09:01:51,674", + "created": 1592290911.674869, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -4065,14 +4639,14 @@ "lineno": 26, "message": "Expectation (Submitted value number 2): result = 5 ()", "module": "test", - "msecs": 45.909881591796875, + "msecs": 674.8690605163574, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1680.851936340332, - "thread": 140570112038720, + "relativeCreated": 1704.0400505065918, + "thread": 139834866980672, "threadName": "MainThread" }, { @@ -4080,8 +4654,8 @@ "5", "" ], - "asctime": "2019-12-27 08:39:29,045", - "created": 1577432369.045956, + "asctime": "2020-06-16 09:01:51,674", + "created": 1592290911.674947, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -4091,32 +4665,32 @@ "lineno": 142, "message": "Submitted value number 2 is correct (Content 5 and Type is ).", "module": "test", - "msecs": 45.95589637756348, + "msecs": 674.9470233917236, "msg": "Submitted value number 2 is correct (Content %s and Type is %s).", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1680.8979511260986, - "thread": 140570112038720, + "relativeCreated": 1704.118013381958, + "thread": 139834866980672, "threadName": "MainThread" } ], - "msecs": 46.000003814697266, + "msecs": 675.0140190124512, "msg": "Execution of state machine callback (1) (all_transitions, condition_b) identified by a sequence number: Values and number of submitted values is correct. See detailed log for more information.", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1680.9420585632324, - "thread": 140570112038720, + "relativeCreated": 1704.1850090026855, + "thread": 139834866980672, "threadName": "MainThread", - "time_consumption": 4.410743713378906e-05 + "time_consumption": 6.699562072753906e-05 }, { "args": [], - "asctime": "2019-12-27 08:39:29,046", - "created": 1577432369.046459, + "asctime": "2020-06-16 09:01:51,675", + "created": 1592290911.675725, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -4133,8 +4707,8 @@ "[ 3, 6 ]", "" ], - "asctime": "2019-12-27 08:39:29,046", - "created": 1577432369.04608, + "asctime": "2020-06-16 09:01:51,675", + "created": 1592290911.675147, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -4144,14 +4718,14 @@ "lineno": 22, "message": "Result (Execution of state machine callback (2) (all_transitions, condition_b) identified by a sequence number): [ 3, 6 ] ()", "module": "test", - "msecs": 46.08011245727539, + "msecs": 675.1470565795898, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1681.0221672058105, - "thread": 140570112038720, + "relativeCreated": 1704.3180465698242, + "thread": 139834866980672, "threadName": "MainThread" }, { @@ -4160,8 +4734,8 @@ "[ 3, 6 ]", "" ], - "asctime": "2019-12-27 08:39:29,046", - "created": 1577432369.04613, + "asctime": "2020-06-16 09:01:51,675", + "created": 1592290911.675224, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -4171,14 +4745,14 @@ "lineno": 26, "message": "Expectation (Execution of state machine callback (2) (all_transitions, condition_b) identified by a sequence number): result = [ 3, 6 ] ()", "module": "test", - "msecs": 46.12994194030762, + "msecs": 675.2240657806396, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1681.0719966888428, - "thread": 140570112038720, + "relativeCreated": 1704.395055770874, + "thread": 139834866980672, "threadName": "MainThread" }, { @@ -4187,8 +4761,8 @@ "3", "" ], - "asctime": "2019-12-27 08:39:29,046", - "created": 1577432369.046179, + "asctime": "2020-06-16 09:01:51,675", + "created": 1592290911.6753, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -4198,14 +4772,14 @@ "lineno": 22, "message": "Result (Submitted value number 1): 3 ()", "module": "test", - "msecs": 46.17905616760254, + "msecs": 675.299882888794, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1681.1211109161377, - "thread": 140570112038720, + "relativeCreated": 1704.4708728790283, + "thread": 139834866980672, "threadName": "MainThread" }, { @@ -4214,8 +4788,8 @@ "3", "" ], - "asctime": "2019-12-27 08:39:29,046", - "created": 1577432369.046227, + "asctime": "2020-06-16 09:01:51,675", + "created": 1592290911.675373, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -4225,14 +4799,14 @@ "lineno": 26, "message": "Expectation (Submitted value number 1): result = 3 ()", "module": "test", - "msecs": 46.22697830200195, + "msecs": 675.3730773925781, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1681.169033050537, - "thread": 140570112038720, + "relativeCreated": 1704.5440673828125, + "thread": 139834866980672, "threadName": "MainThread" }, { @@ -4240,8 +4814,8 @@ "3", "" ], - "asctime": "2019-12-27 08:39:29,046", - "created": 1577432369.046273, + "asctime": "2020-06-16 09:01:51,675", + "created": 1592290911.675445, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -4251,14 +4825,14 @@ "lineno": 142, "message": "Submitted value number 1 is correct (Content 3 and Type is ).", "module": "test", - "msecs": 46.272993087768555, + "msecs": 675.4450798034668, "msg": "Submitted value number 1 is correct (Content %s and Type is %s).", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1681.2150478363037, - "thread": 140570112038720, + "relativeCreated": 1704.6160697937012, + "thread": 139834866980672, "threadName": "MainThread" }, { @@ -4267,8 +4841,8 @@ "6", "" ], - "asctime": "2019-12-27 08:39:29,046", - "created": 1577432369.04632, + "asctime": "2020-06-16 09:01:51,675", + "created": 1592290911.675517, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -4278,14 +4852,14 @@ "lineno": 22, "message": "Result (Submitted value number 2): 6 ()", "module": "test", - "msecs": 46.31996154785156, + "msecs": 675.5170822143555, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1681.2620162963867, - "thread": 140570112038720, + "relativeCreated": 1704.6880722045898, + "thread": 139834866980672, "threadName": "MainThread" }, { @@ -4294,8 +4868,8 @@ "6", "" ], - "asctime": "2019-12-27 08:39:29,046", - "created": 1577432369.046364, + "asctime": "2020-06-16 09:01:51,675", + "created": 1592290911.675585, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -4305,14 +4879,14 @@ "lineno": 26, "message": "Expectation (Submitted value number 2): result = 6 ()", "module": "test", - "msecs": 46.36406898498535, + "msecs": 675.5850315093994, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1681.3061237335205, - "thread": 140570112038720, + "relativeCreated": 1704.7560214996338, + "thread": 139834866980672, "threadName": "MainThread" }, { @@ -4320,8 +4894,8 @@ "6", "" ], - "asctime": "2019-12-27 08:39:29,046", - "created": 1577432369.046415, + "asctime": "2020-06-16 09:01:51,675", + "created": 1592290911.675654, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -4331,39 +4905,39 @@ "lineno": 142, "message": "Submitted value number 2 is correct (Content 6 and Type is ).", "module": "test", - "msecs": 46.415090560913086, + "msecs": 675.6539344787598, "msg": "Submitted value number 2 is correct (Content %s and Type is %s).", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1681.3571453094482, - "thread": 140570112038720, + "relativeCreated": 1704.8249244689941, + "thread": 139834866980672, "threadName": "MainThread" } ], - "msecs": 46.45895957946777, + "msecs": 675.724983215332, "msg": "Execution of state machine callback (2) (all_transitions, condition_b) identified by a sequence number: Values and number of submitted values is correct. See detailed log for more information.", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1681.401014328003, - "thread": 140570112038720, + "relativeCreated": 1704.8959732055664, + "thread": 139834866980672, "threadName": "MainThread", - "time_consumption": 4.38690185546875e-05 + "time_consumption": 7.104873657226562e-05 } ], - "thread": 140570112038720, + "thread": 139834866980672, "threadName": "MainThread", - "time_consumption": 0.0033478736877441406, - "time_finished": "2019-12-27 08:39:29,046", - "time_start": "2019-12-27 08:39:29,043" + "time_consumption": 0.0031099319458007812, + "time_finished": "2020-06-16 09:01:51,675", + "time_start": "2020-06-16 09:01:51,672" }, "_bDqbMHcrEemrUqotql_Blw": { "args": null, - "asctime": "2019-12-27 08:39:27,392", - "created": 1577432367.392555, + "asctime": "2020-06-16 09:01:50,022", + "created": 1592290910.02299, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -4374,18 +4948,18 @@ "message": "_bDqbMHcrEemrUqotql_Blw", "module": "__init__", "moduleLogger": [], - "msecs": 392.55499839782715, + "msecs": 22.989988327026367, "msg": "_bDqbMHcrEemrUqotql_Blw", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/__init__.py", - "process": 8622, + "pathname": "/user_data/data/dirk/prj/unittest/state_machine/unittest/src/tests/__init__.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 27.497053146362305, + "relativeCreated": 52.16097831726074, "testcaseLogger": [ { "args": [], - "asctime": "2019-12-27 08:39:27,392", - "created": 1577432367.392666, + "asctime": "2020-06-16 09:01:50,023", + "created": 1592290910.023154, "exc_info": null, "exc_text": null, "filename": "test_init.py", @@ -4403,46 +4977,46 @@ "None", "'state_c'" ], - "asctime": "2019-12-27 08:39:27,392", - "created": 1577432367.392621, + "asctime": "2020-06-16 09:01:50,023", + "created": 1592290910.023102, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__set_state__", "levelname": "DEBUG", "levelno": 10, - "lineno": 174, + "lineno": 176, "message": "StateMachine: State change ('__init__'): None -> 'state_c'", "module": "__init__", - "msecs": 392.6210403442383, + "msecs": 23.1020450592041, "msg": "%s State change (%s): %s -> %s", "name": "STATE_MACHINE", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/state_machine/__init__.py", - "process": 8622, + "pathname": "src/state_machine/__init__.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 27.563095092773438, - "thread": 140570112038720, + "relativeCreated": 52.27303504943848, + "thread": 139834866980672, "threadName": "MainThread" } ], - "msecs": 392.6661014556885, + "msecs": 23.154020309448242, "msg": "Initialising the state machine with state_c", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_init.py", - "process": 8622, + "pathname": "src/tests/test_init.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 27.608156204223633, - "thread": 140570112038720, + "relativeCreated": 52.32501029968262, + "thread": 139834866980672, "threadName": "MainThread", - "time_consumption": 4.506111145019531e-05 + "time_consumption": 5.1975250244140625e-05 }, { "args": [ "None", "" ], - "asctime": "2019-12-27 08:39:27,392", - "created": 1577432367.39281, + "asctime": "2020-06-16 09:01:50,023", + "created": 1592290910.023309, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -4459,8 +5033,8 @@ "None", "" ], - "asctime": "2019-12-27 08:39:27,392", - "created": 1577432367.392727, + "asctime": "2020-06-16 09:01:50,023", + "created": 1592290910.023222, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -4470,14 +5044,14 @@ "lineno": 22, "message": "Result (Last state after initialisation): None ()", "module": "test", - "msecs": 392.7268981933594, + "msecs": 23.221969604492188, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 27.66895294189453, - "thread": 140570112038720, + "relativeCreated": 52.39295959472656, + "thread": 139834866980672, "threadName": "MainThread" }, { @@ -4486,8 +5060,8 @@ "None", "" ], - "asctime": "2019-12-27 08:39:27,392", - "created": 1577432367.39277, + "asctime": "2020-06-16 09:01:50,023", + "created": 1592290910.023264, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -4497,39 +5071,39 @@ "lineno": 26, "message": "Expectation (Last state after initialisation): result = None ()", "module": "test", - "msecs": 392.77005195617676, + "msecs": 23.263931274414062, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 27.712106704711914, - "thread": 140570112038720, + "relativeCreated": 52.43492126464844, + "thread": 139834866980672, "threadName": "MainThread" } ], - "msecs": 392.8101062774658, + "msecs": 23.308992385864258, "msg": "Last state after initialisation is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 27.752161026000977, - "thread": 140570112038720, + "relativeCreated": 52.47998237609863, + "thread": 139834866980672, "threadName": "MainThread", - "time_consumption": 4.00543212890625e-05 + "time_consumption": 4.506111145019531e-05 } ], - "thread": 140570112038720, + "thread": 139834866980672, "threadName": "MainThread", - "time_consumption": 0.0002551078796386719, - "time_finished": "2019-12-27 08:39:27,392", - "time_start": "2019-12-27 08:39:27,392" + "time_consumption": 0.0003190040588378906, + "time_finished": "2020-06-16 09:01:50,023", + "time_start": "2020-06-16 09:01:50,022" }, "_b_t78Hb4EemzkK7kGUMNfw": { "args": null, - "asctime": "2019-12-27 08:39:29,046", - "created": 1577432369.046594, + "asctime": "2020-06-16 09:01:51,675", + "created": 1592290911.675952, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -4540,18 +5114,18 @@ "message": "_b_t78Hb4EemzkK7kGUMNfw", "module": "__init__", "moduleLogger": [], - "msecs": 46.59390449523926, + "msecs": 675.9519577026367, "msg": "_b_t78Hb4EemzkK7kGUMNfw", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/__init__.py", - "process": 8622, + "pathname": "/user_data/data/dirk/prj/unittest/state_machine/unittest/src/tests/__init__.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1681.5359592437744, + "relativeCreated": 1705.122947692871, "testcaseLogger": [ { "args": [], - "asctime": "2019-12-27 08:39:29,047", - "created": 1577432369.047327, + "asctime": "2020-06-16 09:01:51,677", + "created": 1592290911.677571, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", @@ -4569,33 +5143,33 @@ "None", "'state_a'" ], - "asctime": "2019-12-27 08:39:29,046", - "created": 1577432369.046681, + "asctime": "2020-06-16 09:01:51,676", + "created": 1592290911.676084, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__set_state__", "levelname": "DEBUG", "levelno": 10, - "lineno": 174, + "lineno": 176, "message": "StateMachine: State change ('__init__'): None -> 'state_a'", "module": "__init__", - "msecs": 46.68092727661133, + "msecs": 676.084041595459, "msg": "%s State change (%s): %s -> %s", "name": "STATE_MACHINE", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/state_machine/__init__.py", - "process": 8622, + "pathname": "src/state_machine/__init__.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1681.6229820251465, - "thread": 140570112038720, + "relativeCreated": 1705.2550315856934, + "thread": 139834866980672, "threadName": "MainThread" }, { "args": [ 1 ], - "asctime": "2019-12-27 08:39:29,046", - "created": 1577432369.046737, + "asctime": "2020-06-16 09:01:51,676", + "created": 1592290911.676194, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", @@ -4605,14 +5179,14 @@ "lineno": 55, "message": "Increasing sequence number to 1 caused by sequence progress", "module": "test_callbacks", - "msecs": 46.736955642700195, + "msecs": 676.1939525604248, "msg": "Increasing sequence number to %d caused by sequence progress", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_callbacks.py", - "process": 8622, + "pathname": "src/tests/test_callbacks.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1681.6790103912354, - "thread": 140570112038720, + "relativeCreated": 1705.3649425506592, + "thread": 139834866980672, "threadName": "MainThread" }, { @@ -4622,33 +5196,60 @@ "'state_a'", "'state_b'" ], - "asctime": "2019-12-27 08:39:29,046", - "created": 1577432369.046804, + "asctime": "2020-06-16 09:01:51,676", + "created": 1592290911.676321, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__set_state__", "levelname": "DEBUG", "levelno": 10, - "lineno": 174, + "lineno": 176, "message": "StateMachine: State change ('condition_a'): 'state_a' -> 'state_b'", "module": "__init__", - "msecs": 46.803951263427734, + "msecs": 676.3210296630859, "msg": "%s State change (%s): %s -> %s", "name": "STATE_MACHINE", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/state_machine/__init__.py", - "process": 8622, + "pathname": "src/state_machine/__init__.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1681.746006011963, - "thread": 140570112038720, + "relativeCreated": 1705.4920196533203, + "thread": 139834866980672, + "threadName": "MainThread" + }, + { + "args": [ + 0, + "tests.test_callbacks", + "exec_with_counter" + ], + "asctime": "2020-06-16 09:01:51,676", + "created": 1592290911.676407, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__set_state__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 195, + "message": "Executing callback 0 - tests.test_callbacks.exec_with_counter", + "module": "__init__", + "msecs": 676.4070987701416, + "msg": "Executing callback %d - %s.%s", + "name": "STATE_MACHINE", + "pathname": "src/state_machine/__init__.py", + "process": 11803, + "processName": "MainProcess", + "relativeCreated": 1705.578088760376, + "thread": 139834866980672, "threadName": "MainThread" }, { "args": [ 2 ], - "asctime": "2019-12-27 08:39:29,046", - "created": 1577432369.046849, + "asctime": "2020-06-16 09:01:51,676", + "created": 1592290911.676479, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", @@ -4658,22 +5259,49 @@ "lineno": 24, "message": "Increasing sequence number to 2 caused by callback_execution", "module": "test_callbacks", - "msecs": 46.84901237487793, + "msecs": 676.4791011810303, "msg": "Increasing sequence number to %d caused by callback_execution", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_callbacks.py", - "process": 8622, + "pathname": "src/tests/test_callbacks.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1681.791067123413, - "thread": 140570112038720, + "relativeCreated": 1705.6500911712646, + "thread": 139834866980672, + "threadName": "MainThread" + }, + { + "args": [ + 1, + "tests.test_callbacks", + "exec_with_counter" + ], + "asctime": "2020-06-16 09:01:51,676", + "created": 1592290911.67656, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__set_state__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 195, + "message": "Executing callback 1 - tests.test_callbacks.exec_with_counter", + "module": "__init__", + "msecs": 676.5599250793457, + "msg": "Executing callback %d - %s.%s", + "name": "STATE_MACHINE", + "pathname": "src/state_machine/__init__.py", + "process": 11803, + "processName": "MainProcess", + "relativeCreated": 1705.73091506958, + "thread": 139834866980672, "threadName": "MainThread" }, { "args": [ 3 ], - "asctime": "2019-12-27 08:39:29,046", - "created": 1577432369.046896, + "asctime": "2020-06-16 09:01:51,676", + "created": 1592290911.676634, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", @@ -4683,22 +5311,22 @@ "lineno": 24, "message": "Increasing sequence number to 3 caused by callback_execution", "module": "test_callbacks", - "msecs": 46.89598083496094, + "msecs": 676.6340732574463, "msg": "Increasing sequence number to %d caused by callback_execution", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_callbacks.py", - "process": 8622, + "pathname": "src/tests/test_callbacks.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1681.838035583496, - "thread": 140570112038720, + "relativeCreated": 1705.8050632476807, + "thread": 139834866980672, "threadName": "MainThread" }, { "args": [ 4 ], - "asctime": "2019-12-27 08:39:29,046", - "created": 1577432369.046945, + "asctime": "2020-06-16 09:01:51,676", + "created": 1592290911.676717, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", @@ -4708,14 +5336,14 @@ "lineno": 55, "message": "Increasing sequence number to 4 caused by sequence progress", "module": "test_callbacks", - "msecs": 46.94509506225586, + "msecs": 676.7170429229736, "msg": "Increasing sequence number to %d caused by sequence progress", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_callbacks.py", - "process": 8622, + "pathname": "src/tests/test_callbacks.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1681.887149810791, - "thread": 140570112038720, + "relativeCreated": 1705.888032913208, + "thread": 139834866980672, "threadName": "MainThread" }, { @@ -4725,33 +5353,33 @@ "'state_b'", "'state_a'" ], - "asctime": "2019-12-27 08:39:29,046", - "created": 1577432369.046998, + "asctime": "2020-06-16 09:01:51,676", + "created": 1592290911.676817, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__set_state__", "levelname": "DEBUG", "levelno": 10, - "lineno": 174, + "lineno": 176, "message": "StateMachine: State change ('condition_b'): 'state_b' -> 'state_a'", "module": "__init__", - "msecs": 46.998023986816406, + "msecs": 676.8169403076172, "msg": "%s State change (%s): %s -> %s", "name": "STATE_MACHINE", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/state_machine/__init__.py", - "process": 8622, + "pathname": "src/state_machine/__init__.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1681.9400787353516, - "thread": 140570112038720, + "relativeCreated": 1705.9879302978516, + "thread": 139834866980672, "threadName": "MainThread" }, { "args": [ 5 ], - "asctime": "2019-12-27 08:39:29,047", - "created": 1577432369.047041, + "asctime": "2020-06-16 09:01:51,676", + "created": 1592290911.676902, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", @@ -4761,14 +5389,14 @@ "lineno": 55, "message": "Increasing sequence number to 5 caused by sequence progress", "module": "test_callbacks", - "msecs": 47.04093933105469, + "msecs": 676.9020557403564, "msg": "Increasing sequence number to %d caused by sequence progress", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_callbacks.py", - "process": 8622, + "pathname": "src/tests/test_callbacks.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1681.9829940795898, - "thread": 140570112038720, + "relativeCreated": 1706.0730457305908, + "thread": 139834866980672, "threadName": "MainThread" }, { @@ -4778,33 +5406,60 @@ "'state_a'", "'state_b'" ], - "asctime": "2019-12-27 08:39:29,047", - "created": 1577432369.047092, + "asctime": "2020-06-16 09:01:51,676", + "created": 1592290911.676998, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__set_state__", "levelname": "DEBUG", "levelno": 10, - "lineno": 174, + "lineno": 176, "message": "StateMachine: State change ('condition_b'): 'state_a' -> 'state_b'", "module": "__init__", - "msecs": 47.09196090698242, + "msecs": 676.9979000091553, "msg": "%s State change (%s): %s -> %s", "name": "STATE_MACHINE", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/state_machine/__init__.py", - "process": 8622, + "pathname": "src/state_machine/__init__.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1682.0340156555176, - "thread": 140570112038720, + "relativeCreated": 1706.1688899993896, + "thread": 139834866980672, + "threadName": "MainThread" + }, + { + "args": [ + 0, + "tests.test_callbacks", + "exec_with_counter" + ], + "asctime": "2020-06-16 09:01:51,677", + "created": 1592290911.677078, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__set_state__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 195, + "message": "Executing callback 0 - tests.test_callbacks.exec_with_counter", + "module": "__init__", + "msecs": 677.0780086517334, + "msg": "Executing callback %d - %s.%s", + "name": "STATE_MACHINE", + "pathname": "src/state_machine/__init__.py", + "process": 11803, + "processName": "MainProcess", + "relativeCreated": 1706.2489986419678, + "thread": 139834866980672, "threadName": "MainThread" }, { "args": [ 6 ], - "asctime": "2019-12-27 08:39:29,047", - "created": 1577432369.047136, + "asctime": "2020-06-16 09:01:51,677", + "created": 1592290911.677153, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", @@ -4814,22 +5469,49 @@ "lineno": 24, "message": "Increasing sequence number to 6 caused by callback_execution", "module": "test_callbacks", - "msecs": 47.13606834411621, + "msecs": 677.1531105041504, "msg": "Increasing sequence number to %d caused by callback_execution", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_callbacks.py", - "process": 8622, + "pathname": "src/tests/test_callbacks.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1682.0781230926514, - "thread": 140570112038720, + "relativeCreated": 1706.3241004943848, + "thread": 139834866980672, + "threadName": "MainThread" + }, + { + "args": [ + 1, + "tests.test_callbacks", + "exec_with_counter" + ], + "asctime": "2020-06-16 09:01:51,677", + "created": 1592290911.677234, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__set_state__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 195, + "message": "Executing callback 1 - tests.test_callbacks.exec_with_counter", + "module": "__init__", + "msecs": 677.2339344024658, + "msg": "Executing callback %d - %s.%s", + "name": "STATE_MACHINE", + "pathname": "src/state_machine/__init__.py", + "process": 11803, + "processName": "MainProcess", + "relativeCreated": 1706.4049243927002, + "thread": 139834866980672, "threadName": "MainThread" }, { "args": [ 7 ], - "asctime": "2019-12-27 08:39:29,047", - "created": 1577432369.047178, + "asctime": "2020-06-16 09:01:51,677", + "created": 1592290911.677303, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", @@ -4839,22 +5521,22 @@ "lineno": 24, "message": "Increasing sequence number to 7 caused by callback_execution", "module": "test_callbacks", - "msecs": 47.178030014038086, + "msecs": 677.3030757904053, "msg": "Increasing sequence number to %d caused by callback_execution", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_callbacks.py", - "process": 8622, + "pathname": "src/tests/test_callbacks.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1682.1200847625732, - "thread": 140570112038720, + "relativeCreated": 1706.4740657806396, + "thread": 139834866980672, "threadName": "MainThread" }, { "args": [ 8 ], - "asctime": "2019-12-27 08:39:29,047", - "created": 1577432369.047221, + "asctime": "2020-06-16 09:01:51,677", + "created": 1592290911.677383, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", @@ -4864,14 +5546,14 @@ "lineno": 55, "message": "Increasing sequence number to 8 caused by sequence progress", "module": "test_callbacks", - "msecs": 47.22094535827637, + "msecs": 677.3829460144043, "msg": "Increasing sequence number to %d caused by sequence progress", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_callbacks.py", - "process": 8622, + "pathname": "src/tests/test_callbacks.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1682.1630001068115, - "thread": 140570112038720, + "relativeCreated": 1706.5539360046387, + "thread": 139834866980672, "threadName": "MainThread" }, { @@ -4881,43 +5563,43 @@ "'state_b'", "'state_c'" ], - "asctime": "2019-12-27 08:39:29,047", - "created": 1577432369.047271, + "asctime": "2020-06-16 09:01:51,677", + "created": 1592290911.677482, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__set_state__", "levelname": "DEBUG", "levelno": 10, - "lineno": 174, + "lineno": 176, "message": "StateMachine: State change ('condition_c'): 'state_b' -> 'state_c'", "module": "__init__", - "msecs": 47.271013259887695, + "msecs": 677.4818897247314, "msg": "%s State change (%s): %s -> %s", "name": "STATE_MACHINE", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/state_machine/__init__.py", - "process": 8622, + "pathname": "src/state_machine/__init__.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1682.2130680084229, - "thread": 140570112038720, + "relativeCreated": 1706.6528797149658, + "thread": 139834866980672, "threadName": "MainThread" } ], - "msecs": 47.32704162597656, + "msecs": 677.5710582733154, "msg": "Running state machine sequence and storing sequence number for each callback", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_callbacks.py", - "process": 8622, + "pathname": "src/tests/test_callbacks.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1682.2690963745117, - "thread": 140570112038720, + "relativeCreated": 1706.7420482635498, + "thread": 139834866980672, "threadName": "MainThread", - "time_consumption": 5.602836608886719e-05 + "time_consumption": 8.916854858398438e-05 }, { "args": [], - "asctime": "2019-12-27 08:39:29,047", - "created": 1577432369.047728, + "asctime": "2020-06-16 09:01:51,678", + "created": 1592290911.678302, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -4934,8 +5616,8 @@ "[ 1, 5 ]", "" ], - "asctime": "2019-12-27 08:39:29,047", - "created": 1577432369.047411, + "asctime": "2020-06-16 09:01:51,677", + "created": 1592290911.677716, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -4945,14 +5627,14 @@ "lineno": 22, "message": "Result (Execution of state machine callback (1) (state_b, all_conditions) identified by a sequence number): [ 1, 5 ] ()", "module": "test", - "msecs": 47.41096496582031, + "msecs": 677.7160167694092, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1682.3530197143555, - "thread": 140570112038720, + "relativeCreated": 1706.8870067596436, + "thread": 139834866980672, "threadName": "MainThread" }, { @@ -4961,8 +5643,8 @@ "[ 1, 5 ]", "" ], - "asctime": "2019-12-27 08:39:29,047", - "created": 1577432369.047453, + "asctime": "2020-06-16 09:01:51,677", + "created": 1592290911.677796, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -4972,14 +5654,14 @@ "lineno": 26, "message": "Expectation (Execution of state machine callback (1) (state_b, all_conditions) identified by a sequence number): result = [ 1, 5 ] ()", "module": "test", - "msecs": 47.45292663574219, + "msecs": 677.7958869934082, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1682.3949813842773, - "thread": 140570112038720, + "relativeCreated": 1706.9668769836426, + "thread": 139834866980672, "threadName": "MainThread" }, { @@ -4988,8 +5670,8 @@ "1", "" ], - "asctime": "2019-12-27 08:39:29,047", - "created": 1577432369.047494, + "asctime": "2020-06-16 09:01:51,677", + "created": 1592290911.677873, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -4999,14 +5681,14 @@ "lineno": 22, "message": "Result (Submitted value number 1): 1 ()", "module": "test", - "msecs": 47.493934631347656, + "msecs": 677.872896194458, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1682.4359893798828, - "thread": 140570112038720, + "relativeCreated": 1707.0438861846924, + "thread": 139834866980672, "threadName": "MainThread" }, { @@ -5015,8 +5697,8 @@ "1", "" ], - "asctime": "2019-12-27 08:39:29,047", - "created": 1577432369.047537, + "asctime": "2020-06-16 09:01:51,677", + "created": 1592290911.677943, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -5026,14 +5708,14 @@ "lineno": 26, "message": "Expectation (Submitted value number 1): result = 1 ()", "module": "test", - "msecs": 47.53708839416504, + "msecs": 677.9429912567139, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1682.4791431427002, - "thread": 140570112038720, + "relativeCreated": 1707.1139812469482, + "thread": 139834866980672, "threadName": "MainThread" }, { @@ -5041,8 +5723,8 @@ "1", "" ], - "asctime": "2019-12-27 08:39:29,047", - "created": 1577432369.047575, + "asctime": "2020-06-16 09:01:51,678", + "created": 1592290911.67802, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -5052,14 +5734,14 @@ "lineno": 142, "message": "Submitted value number 1 is correct (Content 1 and Type is ).", "module": "test", - "msecs": 47.57499694824219, + "msecs": 678.0200004577637, "msg": "Submitted value number 1 is correct (Content %s and Type is %s).", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1682.5170516967773, - "thread": 140570112038720, + "relativeCreated": 1707.190990447998, + "thread": 139834866980672, "threadName": "MainThread" }, { @@ -5068,8 +5750,8 @@ "5", "" ], - "asctime": "2019-12-27 08:39:29,047", - "created": 1577432369.047615, + "asctime": "2020-06-16 09:01:51,678", + "created": 1592290911.678097, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -5079,14 +5761,14 @@ "lineno": 22, "message": "Result (Submitted value number 2): 5 ()", "module": "test", - "msecs": 47.61505126953125, + "msecs": 678.0970096588135, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1682.5571060180664, - "thread": 140570112038720, + "relativeCreated": 1707.2679996490479, + "thread": 139834866980672, "threadName": "MainThread" }, { @@ -5095,8 +5777,8 @@ "5", "" ], - "asctime": "2019-12-27 08:39:29,047", - "created": 1577432369.047651, + "asctime": "2020-06-16 09:01:51,678", + "created": 1592290911.678166, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -5106,14 +5788,14 @@ "lineno": 26, "message": "Expectation (Submitted value number 2): result = 5 ()", "module": "test", - "msecs": 47.651052474975586, + "msecs": 678.1659126281738, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1682.5931072235107, - "thread": 140570112038720, + "relativeCreated": 1707.3369026184082, + "thread": 139834866980672, "threadName": "MainThread" }, { @@ -5121,8 +5803,8 @@ "5", "" ], - "asctime": "2019-12-27 08:39:29,047", - "created": 1577432369.047692, + "asctime": "2020-06-16 09:01:51,678", + "created": 1592290911.678235, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -5132,32 +5814,32 @@ "lineno": 142, "message": "Submitted value number 2 is correct (Content 5 and Type is ).", "module": "test", - "msecs": 47.692060470581055, + "msecs": 678.2350540161133, "msg": "Submitted value number 2 is correct (Content %s and Type is %s).", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1682.6341152191162, - "thread": 140570112038720, + "relativeCreated": 1707.4060440063477, + "thread": 139834866980672, "threadName": "MainThread" } ], - "msecs": 47.72806167602539, + "msecs": 678.3020496368408, "msg": "Execution of state machine callback (1) (state_b, all_conditions) identified by a sequence number: Values and number of submitted values is correct. See detailed log for more information.", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1682.6701164245605, - "thread": 140570112038720, + "relativeCreated": 1707.4730396270752, + "thread": 139834866980672, "threadName": "MainThread", - "time_consumption": 3.600120544433594e-05 + "time_consumption": 6.699562072753906e-05 }, { "args": [], - "asctime": "2019-12-27 08:39:29,048", - "created": 1577432369.048115, + "asctime": "2020-06-16 09:01:51,679", + "created": 1592290911.679024, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -5174,8 +5856,8 @@ "[ 2, 6 ]", "" ], - "asctime": "2019-12-27 08:39:29,047", - "created": 1577432369.047798, + "asctime": "2020-06-16 09:01:51,678", + "created": 1592290911.678434, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -5185,14 +5867,14 @@ "lineno": 22, "message": "Result (Execution of state machine callback (2) (state_b, all_conditions) identified by a sequence number): [ 2, 6 ] ()", "module": "test", - "msecs": 47.79791831970215, + "msecs": 678.433895111084, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1682.7399730682373, - "thread": 140570112038720, + "relativeCreated": 1707.6048851013184, + "thread": 139834866980672, "threadName": "MainThread" }, { @@ -5201,8 +5883,8 @@ "[ 2, 6 ]", "" ], - "asctime": "2019-12-27 08:39:29,047", - "created": 1577432369.047839, + "asctime": "2020-06-16 09:01:51,678", + "created": 1592290911.67851, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -5212,14 +5894,14 @@ "lineno": 26, "message": "Expectation (Execution of state machine callback (2) (state_b, all_conditions) identified by a sequence number): result = [ 2, 6 ] ()", "module": "test", - "msecs": 47.83892631530762, + "msecs": 678.5099506378174, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1682.7809810638428, - "thread": 140570112038720, + "relativeCreated": 1707.6809406280518, + "thread": 139834866980672, "threadName": "MainThread" }, { @@ -5228,8 +5910,8 @@ "2", "" ], - "asctime": "2019-12-27 08:39:29,047", - "created": 1577432369.047879, + "asctime": "2020-06-16 09:01:51,678", + "created": 1592290911.678599, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -5239,14 +5921,14 @@ "lineno": 22, "message": "Result (Submitted value number 1): 2 ()", "module": "test", - "msecs": 47.87898063659668, + "msecs": 678.5991191864014, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1682.8210353851318, - "thread": 140570112038720, + "relativeCreated": 1707.7701091766357, + "thread": 139834866980672, "threadName": "MainThread" }, { @@ -5255,8 +5937,8 @@ "2", "" ], - "asctime": "2019-12-27 08:39:29,047", - "created": 1577432369.047918, + "asctime": "2020-06-16 09:01:51,678", + "created": 1592290911.678667, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -5266,14 +5948,14 @@ "lineno": 26, "message": "Expectation (Submitted value number 1): result = 2 ()", "module": "test", - "msecs": 47.918081283569336, + "msecs": 678.6670684814453, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1682.8601360321045, - "thread": 140570112038720, + "relativeCreated": 1707.8380584716797, + "thread": 139834866980672, "threadName": "MainThread" }, { @@ -5281,8 +5963,8 @@ "2", "" ], - "asctime": "2019-12-27 08:39:29,047", - "created": 1577432369.047961, + "asctime": "2020-06-16 09:01:51,678", + "created": 1592290911.678739, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -5292,14 +5974,14 @@ "lineno": 142, "message": "Submitted value number 1 is correct (Content 2 and Type is ).", "module": "test", - "msecs": 47.96099662780762, + "msecs": 678.739070892334, "msg": "Submitted value number 1 is correct (Content %s and Type is %s).", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1682.9030513763428, - "thread": 140570112038720, + "relativeCreated": 1707.9100608825684, + "thread": 139834866980672, "threadName": "MainThread" }, { @@ -5308,8 +5990,8 @@ "6", "" ], - "asctime": "2019-12-27 08:39:29,048", - "created": 1577432369.048003, + "asctime": "2020-06-16 09:01:51,678", + "created": 1592290911.67881, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -5319,14 +6001,14 @@ "lineno": 22, "message": "Result (Submitted value number 2): 6 ()", "module": "test", - "msecs": 48.00295829772949, + "msecs": 678.8098812103271, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1682.9450130462646, - "thread": 140570112038720, + "relativeCreated": 1707.9808712005615, + "thread": 139834866980672, "threadName": "MainThread" }, { @@ -5335,8 +6017,8 @@ "6", "" ], - "asctime": "2019-12-27 08:39:29,048", - "created": 1577432369.048042, + "asctime": "2020-06-16 09:01:51,678", + "created": 1592290911.678883, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -5346,14 +6028,14 @@ "lineno": 26, "message": "Expectation (Submitted value number 2): result = 6 ()", "module": "test", - "msecs": 48.04205894470215, + "msecs": 678.8830757141113, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1682.9841136932373, - "thread": 140570112038720, + "relativeCreated": 1708.0540657043457, + "thread": 139834866980672, "threadName": "MainThread" }, { @@ -5361,8 +6043,8 @@ "6", "" ], - "asctime": "2019-12-27 08:39:29,048", - "created": 1577432369.048079, + "asctime": "2020-06-16 09:01:51,678", + "created": 1592290911.678958, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -5372,39 +6054,39 @@ "lineno": 142, "message": "Submitted value number 2 is correct (Content 6 and Type is ).", "module": "test", - "msecs": 48.07901382446289, + "msecs": 678.9579391479492, "msg": "Submitted value number 2 is correct (Content %s and Type is %s).", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1683.021068572998, - "thread": 140570112038720, + "relativeCreated": 1708.1289291381836, + "thread": 139834866980672, "threadName": "MainThread" } ], - "msecs": 48.11501502990723, + "msecs": 679.0239810943604, "msg": "Execution of state machine callback (2) (state_b, all_conditions) identified by a sequence number: Values and number of submitted values is correct. See detailed log for more information.", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1683.0570697784424, - "thread": 140570112038720, + "relativeCreated": 1708.1949710845947, + "thread": 139834866980672, "threadName": "MainThread", - "time_consumption": 3.600120544433594e-05 + "time_consumption": 6.604194641113281e-05 } ], - "thread": 140570112038720, + "thread": 139834866980672, "threadName": "MainThread", - "time_consumption": 0.0015211105346679688, - "time_finished": "2019-12-27 08:39:29,048", - "time_start": "2019-12-27 08:39:29,046" + "time_consumption": 0.003072023391723633, + "time_finished": "2020-06-16 09:01:51,679", + "time_start": "2020-06-16 09:01:51,675" }, "_e4QPUHb4EemzkK7kGUMNfw": { "args": null, - "asctime": "2019-12-27 08:39:29,048", - "created": 1577432369.048225, + "asctime": "2020-06-16 09:01:51,679", + "created": 1592290911.679248, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -5415,18 +6097,18 @@ "message": "_e4QPUHb4EemzkK7kGUMNfw", "module": "__init__", "moduleLogger": [], - "msecs": 48.22492599487305, + "msecs": 679.2480945587158, "msg": "_e4QPUHb4EemzkK7kGUMNfw", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/__init__.py", - "process": 8622, + "pathname": "/user_data/data/dirk/prj/unittest/state_machine/unittest/src/tests/__init__.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1683.1669807434082, + "relativeCreated": 1708.4190845489502, "testcaseLogger": [ { "args": [], - "asctime": "2019-12-27 08:39:29,049", - "created": 1577432369.049101, + "asctime": "2020-06-16 09:01:51,681", + "created": 1592290911.681454, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", @@ -5444,33 +6126,33 @@ "None", "'state_a'" ], - "asctime": "2019-12-27 08:39:29,048", - "created": 1577432369.048301, + "asctime": "2020-06-16 09:01:51,679", + "created": 1592290911.679386, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__set_state__", "levelname": "DEBUG", "levelno": 10, - "lineno": 174, + "lineno": 176, "message": "StateMachine: State change ('__init__'): None -> 'state_a'", "module": "__init__", - "msecs": 48.300981521606445, + "msecs": 679.3859004974365, "msg": "%s State change (%s): %s -> %s", "name": "STATE_MACHINE", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/state_machine/__init__.py", - "process": 8622, + "pathname": "src/state_machine/__init__.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1683.2430362701416, - "thread": 140570112038720, + "relativeCreated": 1708.556890487671, + "thread": 139834866980672, "threadName": "MainThread" }, { "args": [ 1 ], - "asctime": "2019-12-27 08:39:29,048", - "created": 1577432369.048356, + "asctime": "2020-06-16 09:01:51,679", + "created": 1592290911.679497, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", @@ -5480,14 +6162,14 @@ "lineno": 55, "message": "Increasing sequence number to 1 caused by sequence progress", "module": "test_callbacks", - "msecs": 48.356056213378906, + "msecs": 679.4970035552979, "msg": "Increasing sequence number to %d caused by sequence progress", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_callbacks.py", - "process": 8622, + "pathname": "src/tests/test_callbacks.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1683.298110961914, - "thread": 140570112038720, + "relativeCreated": 1708.6679935455322, + "thread": 139834866980672, "threadName": "MainThread" }, { @@ -5497,33 +6179,60 @@ "'state_a'", "'state_b'" ], - "asctime": "2019-12-27 08:39:29,048", - "created": 1577432369.048423, + "asctime": "2020-06-16 09:01:51,679", + "created": 1592290911.67962, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__set_state__", "levelname": "DEBUG", "levelno": 10, - "lineno": 174, + "lineno": 176, "message": "StateMachine: State change ('condition_a'): 'state_a' -> 'state_b'", "module": "__init__", - "msecs": 48.423051834106445, + "msecs": 679.6200275421143, "msg": "%s State change (%s): %s -> %s", "name": "STATE_MACHINE", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/state_machine/__init__.py", - "process": 8622, + "pathname": "src/state_machine/__init__.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1683.3651065826416, - "thread": 140570112038720, + "relativeCreated": 1708.7910175323486, + "thread": 139834866980672, + "threadName": "MainThread" + }, + { + "args": [ + 0, + "tests.test_callbacks", + "exec_with_counter" + ], + "asctime": "2020-06-16 09:01:51,679", + "created": 1592290911.679705, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__set_state__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 195, + "message": "Executing callback 0 - tests.test_callbacks.exec_with_counter", + "module": "__init__", + "msecs": 679.7049045562744, + "msg": "Executing callback %d - %s.%s", + "name": "STATE_MACHINE", + "pathname": "src/state_machine/__init__.py", + "process": 11803, + "processName": "MainProcess", + "relativeCreated": 1708.8758945465088, + "thread": 139834866980672, "threadName": "MainThread" }, { "args": [ 2 ], - "asctime": "2019-12-27 08:39:29,048", - "created": 1577432369.048467, + "asctime": "2020-06-16 09:01:51,679", + "created": 1592290911.679777, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", @@ -5533,22 +6242,49 @@ "lineno": 24, "message": "Increasing sequence number to 2 caused by callback_execution", "module": "test_callbacks", - "msecs": 48.46692085266113, + "msecs": 679.7769069671631, "msg": "Increasing sequence number to %d caused by callback_execution", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_callbacks.py", - "process": 8622, + "pathname": "src/tests/test_callbacks.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1683.4089756011963, - "thread": 140570112038720, + "relativeCreated": 1708.9478969573975, + "thread": 139834866980672, + "threadName": "MainThread" + }, + { + "args": [ + 1, + "tests.test_callbacks", + "exec_with_counter" + ], + "asctime": "2020-06-16 09:01:51,679", + "created": 1592290911.679863, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__set_state__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 195, + "message": "Executing callback 1 - tests.test_callbacks.exec_with_counter", + "module": "__init__", + "msecs": 679.8629760742188, + "msg": "Executing callback %d - %s.%s", + "name": "STATE_MACHINE", + "pathname": "src/state_machine/__init__.py", + "process": 11803, + "processName": "MainProcess", + "relativeCreated": 1709.0339660644531, + "thread": 139834866980672, "threadName": "MainThread" }, { "args": [ 3 ], - "asctime": "2019-12-27 08:39:29,048", - "created": 1577432369.048511, + "asctime": "2020-06-16 09:01:51,679", + "created": 1592290911.679933, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", @@ -5558,22 +6294,22 @@ "lineno": 24, "message": "Increasing sequence number to 3 caused by callback_execution", "module": "test_callbacks", - "msecs": 48.51102828979492, + "msecs": 679.9330711364746, "msg": "Increasing sequence number to %d caused by callback_execution", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_callbacks.py", - "process": 8622, + "pathname": "src/tests/test_callbacks.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1683.45308303833, - "thread": 140570112038720, + "relativeCreated": 1709.104061126709, + "thread": 139834866980672, "threadName": "MainThread" }, { "args": [ 4 ], - "asctime": "2019-12-27 08:39:29,048", - "created": 1577432369.048556, + "asctime": "2020-06-16 09:01:51,680", + "created": 1592290911.680015, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", @@ -5583,14 +6319,14 @@ "lineno": 55, "message": "Increasing sequence number to 4 caused by sequence progress", "module": "test_callbacks", - "msecs": 48.55608940124512, + "msecs": 680.0150871276855, "msg": "Increasing sequence number to %d caused by sequence progress", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_callbacks.py", - "process": 8622, + "pathname": "src/tests/test_callbacks.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1683.4981441497803, - "thread": 140570112038720, + "relativeCreated": 1709.18607711792, + "thread": 139834866980672, "threadName": "MainThread" }, { @@ -5600,33 +6336,60 @@ "'state_b'", "'state_a'" ], - "asctime": "2019-12-27 08:39:29,048", - "created": 1577432369.048607, + "asctime": "2020-06-16 09:01:51,680", + "created": 1592290911.680117, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__set_state__", "levelname": "DEBUG", "levelno": 10, - "lineno": 174, + "lineno": 176, "message": "StateMachine: State change ('condition_b'): 'state_b' -> 'state_a'", "module": "__init__", - "msecs": 48.60711097717285, + "msecs": 680.1168918609619, "msg": "%s State change (%s): %s -> %s", "name": "STATE_MACHINE", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/state_machine/__init__.py", - "process": 8622, + "pathname": "src/state_machine/__init__.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1683.549165725708, - "thread": 140570112038720, + "relativeCreated": 1709.2878818511963, + "thread": 139834866980672, + "threadName": "MainThread" + }, + { + "args": [ + 0, + "tests.test_callbacks", + "exec_with_counter" + ], + "asctime": "2020-06-16 09:01:51,680", + "created": 1592290911.680204, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__set_state__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 195, + "message": "Executing callback 0 - tests.test_callbacks.exec_with_counter", + "module": "__init__", + "msecs": 680.203914642334, + "msg": "Executing callback %d - %s.%s", + "name": "STATE_MACHINE", + "pathname": "src/state_machine/__init__.py", + "process": 11803, + "processName": "MainProcess", + "relativeCreated": 1709.3749046325684, + "thread": 139834866980672, "threadName": "MainThread" }, { "args": [ 5 ], - "asctime": "2019-12-27 08:39:29,048", - "created": 1577432369.048648, + "asctime": "2020-06-16 09:01:51,680", + "created": 1592290911.680274, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", @@ -5636,22 +6399,49 @@ "lineno": 24, "message": "Increasing sequence number to 5 caused by callback_execution", "module": "test_callbacks", - "msecs": 48.64811897277832, + "msecs": 680.2740097045898, "msg": "Increasing sequence number to %d caused by callback_execution", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_callbacks.py", - "process": 8622, + "pathname": "src/tests/test_callbacks.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1683.5901737213135, - "thread": 140570112038720, + "relativeCreated": 1709.4449996948242, + "thread": 139834866980672, + "threadName": "MainThread" + }, + { + "args": [ + 1, + "tests.test_callbacks", + "exec_with_counter" + ], + "asctime": "2020-06-16 09:01:51,680", + "created": 1592290911.680355, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__set_state__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 195, + "message": "Executing callback 1 - tests.test_callbacks.exec_with_counter", + "module": "__init__", + "msecs": 680.3550720214844, + "msg": "Executing callback %d - %s.%s", + "name": "STATE_MACHINE", + "pathname": "src/state_machine/__init__.py", + "process": 11803, + "processName": "MainProcess", + "relativeCreated": 1709.5260620117188, + "thread": 139834866980672, "threadName": "MainThread" }, { "args": [ 6 ], - "asctime": "2019-12-27 08:39:29,048", - "created": 1577432369.048693, + "asctime": "2020-06-16 09:01:51,680", + "created": 1592290911.680423, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", @@ -5661,22 +6451,22 @@ "lineno": 24, "message": "Increasing sequence number to 6 caused by callback_execution", "module": "test_callbacks", - "msecs": 48.692941665649414, + "msecs": 680.4230213165283, "msg": "Increasing sequence number to %d caused by callback_execution", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_callbacks.py", - "process": 8622, + "pathname": "src/tests/test_callbacks.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1683.6349964141846, - "thread": 140570112038720, + "relativeCreated": 1709.5940113067627, + "thread": 139834866980672, "threadName": "MainThread" }, { "args": [ 7 ], - "asctime": "2019-12-27 08:39:29,048", - "created": 1577432369.048741, + "asctime": "2020-06-16 09:01:51,680", + "created": 1592290911.680502, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", @@ -5686,14 +6476,14 @@ "lineno": 55, "message": "Increasing sequence number to 7 caused by sequence progress", "module": "test_callbacks", - "msecs": 48.74110221862793, + "msecs": 680.5019378662109, "msg": "Increasing sequence number to %d caused by sequence progress", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_callbacks.py", - "process": 8622, + "pathname": "src/tests/test_callbacks.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1683.683156967163, - "thread": 140570112038720, + "relativeCreated": 1709.6729278564453, + "thread": 139834866980672, "threadName": "MainThread" }, { @@ -5703,33 +6493,60 @@ "'state_a'", "'state_b'" ], - "asctime": "2019-12-27 08:39:29,048", - "created": 1577432369.048791, + "asctime": "2020-06-16 09:01:51,680", + "created": 1592290911.680602, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__set_state__", "levelname": "DEBUG", "levelno": 10, - "lineno": 174, + "lineno": 176, "message": "StateMachine: State change ('condition_b'): 'state_a' -> 'state_b'", "module": "__init__", - "msecs": 48.790931701660156, + "msecs": 680.6020736694336, "msg": "%s State change (%s): %s -> %s", "name": "STATE_MACHINE", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/state_machine/__init__.py", - "process": 8622, + "pathname": "src/state_machine/__init__.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1683.7329864501953, - "thread": 140570112038720, + "relativeCreated": 1709.773063659668, + "thread": 139834866980672, + "threadName": "MainThread" + }, + { + "args": [ + 0, + "tests.test_callbacks", + "exec_with_counter" + ], + "asctime": "2020-06-16 09:01:51,680", + "created": 1592290911.68068, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__set_state__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 195, + "message": "Executing callback 0 - tests.test_callbacks.exec_with_counter", + "module": "__init__", + "msecs": 680.6800365447998, + "msg": "Executing callback %d - %s.%s", + "name": "STATE_MACHINE", + "pathname": "src/state_machine/__init__.py", + "process": 11803, + "processName": "MainProcess", + "relativeCreated": 1709.8510265350342, + "thread": 139834866980672, "threadName": "MainThread" }, { "args": [ 8 ], - "asctime": "2019-12-27 08:39:29,048", - "created": 1577432369.048831, + "asctime": "2020-06-16 09:01:51,680", + "created": 1592290911.68075, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", @@ -5739,22 +6556,49 @@ "lineno": 24, "message": "Increasing sequence number to 8 caused by callback_execution", "module": "test_callbacks", - "msecs": 48.83098602294922, + "msecs": 680.7498931884766, "msg": "Increasing sequence number to %d caused by callback_execution", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_callbacks.py", - "process": 8622, + "pathname": "src/tests/test_callbacks.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1683.7730407714844, - "thread": 140570112038720, + "relativeCreated": 1709.920883178711, + "thread": 139834866980672, + "threadName": "MainThread" + }, + { + "args": [ + 1, + "tests.test_callbacks", + "exec_with_counter" + ], + "asctime": "2020-06-16 09:01:51,680", + "created": 1592290911.680826, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__set_state__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 195, + "message": "Executing callback 1 - tests.test_callbacks.exec_with_counter", + "module": "__init__", + "msecs": 680.82594871521, + "msg": "Executing callback %d - %s.%s", + "name": "STATE_MACHINE", + "pathname": "src/state_machine/__init__.py", + "process": 11803, + "processName": "MainProcess", + "relativeCreated": 1709.9969387054443, + "thread": 139834866980672, "threadName": "MainThread" }, { "args": [ 9 ], - "asctime": "2019-12-27 08:39:29,048", - "created": 1577432369.048876, + "asctime": "2020-06-16 09:01:51,680", + "created": 1592290911.680899, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", @@ -5764,22 +6608,22 @@ "lineno": 24, "message": "Increasing sequence number to 9 caused by callback_execution", "module": "test_callbacks", - "msecs": 48.876047134399414, + "msecs": 680.898904800415, "msg": "Increasing sequence number to %d caused by callback_execution", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_callbacks.py", - "process": 8622, + "pathname": "src/tests/test_callbacks.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1683.8181018829346, - "thread": 140570112038720, + "relativeCreated": 1710.0698947906494, + "thread": 139834866980672, "threadName": "MainThread" }, { "args": [ 10 ], - "asctime": "2019-12-27 08:39:29,048", - "created": 1577432369.04892, + "asctime": "2020-06-16 09:01:51,680", + "created": 1592290911.680979, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", @@ -5789,14 +6633,14 @@ "lineno": 55, "message": "Increasing sequence number to 10 caused by sequence progress", "module": "test_callbacks", - "msecs": 48.9199161529541, + "msecs": 680.9790134429932, "msg": "Increasing sequence number to %d caused by sequence progress", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_callbacks.py", - "process": 8622, + "pathname": "src/tests/test_callbacks.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1683.8619709014893, - "thread": 140570112038720, + "relativeCreated": 1710.1500034332275, + "thread": 139834866980672, "threadName": "MainThread" }, { @@ -5806,33 +6650,60 @@ "'state_b'", "'state_c'" ], - "asctime": "2019-12-27 08:39:29,048", - "created": 1577432369.048969, + "asctime": "2020-06-16 09:01:51,681", + "created": 1592290911.681074, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__set_state__", "levelname": "DEBUG", "levelno": 10, - "lineno": 174, + "lineno": 176, "message": "StateMachine: State change ('condition_c'): 'state_b' -> 'state_c'", "module": "__init__", - "msecs": 48.96903038024902, + "msecs": 681.0739040374756, "msg": "%s State change (%s): %s -> %s", "name": "STATE_MACHINE", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/state_machine/__init__.py", - "process": 8622, + "pathname": "src/state_machine/__init__.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1683.9110851287842, - "thread": 140570112038720, + "relativeCreated": 1710.24489402771, + "thread": 139834866980672, + "threadName": "MainThread" + }, + { + "args": [ + 0, + "tests.test_callbacks", + "exec_with_counter" + ], + "asctime": "2020-06-16 09:01:51,681", + "created": 1592290911.681152, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__set_state__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 195, + "message": "Executing callback 0 - tests.test_callbacks.exec_with_counter", + "module": "__init__", + "msecs": 681.1521053314209, + "msg": "Executing callback %d - %s.%s", + "name": "STATE_MACHINE", + "pathname": "src/state_machine/__init__.py", + "process": 11803, + "processName": "MainProcess", + "relativeCreated": 1710.3230953216553, + "thread": 139834866980672, "threadName": "MainThread" }, { "args": [ 11 ], - "asctime": "2019-12-27 08:39:29,049", - "created": 1577432369.049011, + "asctime": "2020-06-16 09:01:51,681", + "created": 1592290911.681229, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", @@ -5842,22 +6713,49 @@ "lineno": 24, "message": "Increasing sequence number to 11 caused by callback_execution", "module": "test_callbacks", - "msecs": 49.0109920501709, + "msecs": 681.2291145324707, "msg": "Increasing sequence number to %d caused by callback_execution", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_callbacks.py", - "process": 8622, + "pathname": "src/tests/test_callbacks.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1683.953046798706, - "thread": 140570112038720, + "relativeCreated": 1710.400104522705, + "thread": 139834866980672, + "threadName": "MainThread" + }, + { + "args": [ + 1, + "tests.test_callbacks", + "exec_with_counter" + ], + "asctime": "2020-06-16 09:01:51,681", + "created": 1592290911.681303, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__set_state__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 195, + "message": "Executing callback 1 - tests.test_callbacks.exec_with_counter", + "module": "__init__", + "msecs": 681.3030242919922, + "msg": "Executing callback %d - %s.%s", + "name": "STATE_MACHINE", + "pathname": "src/state_machine/__init__.py", + "process": 11803, + "processName": "MainProcess", + "relativeCreated": 1710.4740142822266, + "thread": 139834866980672, "threadName": "MainThread" }, { "args": [ 12 ], - "asctime": "2019-12-27 08:39:29,049", - "created": 1577432369.049056, + "asctime": "2020-06-16 09:01:51,681", + "created": 1592290911.681372, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", @@ -5867,32 +6765,32 @@ "lineno": 24, "message": "Increasing sequence number to 12 caused by callback_execution", "module": "test_callbacks", - "msecs": 49.056053161621094, + "msecs": 681.3719272613525, "msg": "Increasing sequence number to %d caused by callback_execution", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_callbacks.py", - "process": 8622, + "pathname": "src/tests/test_callbacks.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1683.9981079101562, - "thread": 140570112038720, + "relativeCreated": 1710.542917251587, + "thread": 139834866980672, "threadName": "MainThread" } ], - "msecs": 49.10111427307129, + "msecs": 681.4539432525635, "msg": "Running state machine sequence and storing sequence number for each callback", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_callbacks.py", - "process": 8622, + "pathname": "src/tests/test_callbacks.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1684.0431690216064, - "thread": 140570112038720, + "relativeCreated": 1710.6249332427979, + "thread": 139834866980672, "threadName": "MainThread", - "time_consumption": 4.506111145019531e-05 + "time_consumption": 8.20159912109375e-05 }, { "args": [], - "asctime": "2019-12-27 08:39:29,049", - "created": 1577432369.049761, + "asctime": "2020-06-16 09:01:51,682", + "created": 1592290911.682634, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -5909,8 +6807,8 @@ "[ 1, 4, 7, 10 ]", "" ], - "asctime": "2019-12-27 08:39:29,049", - "created": 1577432369.049178, + "asctime": "2020-06-16 09:01:51,681", + "created": 1592290911.681608, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -5920,14 +6818,14 @@ "lineno": 22, "message": "Result (Execution of state machine callback (1) (all_transitions, all_conditions) identified by a sequence number): [ 1, 4, 7, 10 ] ()", "module": "test", - "msecs": 49.17788505554199, + "msecs": 681.6079616546631, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1684.1199398040771, - "thread": 140570112038720, + "relativeCreated": 1710.7789516448975, + "thread": 139834866980672, "threadName": "MainThread" }, { @@ -5936,8 +6834,8 @@ "[ 1, 4, 7, 10 ]", "" ], - "asctime": "2019-12-27 08:39:29,049", - "created": 1577432369.049224, + "asctime": "2020-06-16 09:01:51,681", + "created": 1592290911.681692, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -5947,14 +6845,14 @@ "lineno": 26, "message": "Expectation (Execution of state machine callback (1) (all_transitions, all_conditions) identified by a sequence number): result = [ 1, 4, 7, 10 ] ()", "module": "test", - "msecs": 49.223899841308594, + "msecs": 681.6918849945068, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1684.1659545898438, - "thread": 140570112038720, + "relativeCreated": 1710.8628749847412, + "thread": 139834866980672, "threadName": "MainThread" }, { @@ -5963,8 +6861,8 @@ "1", "" ], - "asctime": "2019-12-27 08:39:29,049", - "created": 1577432369.049266, + "asctime": "2020-06-16 09:01:51,681", + "created": 1592290911.681775, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -5974,14 +6872,14 @@ "lineno": 22, "message": "Result (Submitted value number 1): 1 ()", "module": "test", - "msecs": 49.26609992980957, + "msecs": 681.7750930786133, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1684.2081546783447, - "thread": 140570112038720, + "relativeCreated": 1710.9460830688477, + "thread": 139834866980672, "threadName": "MainThread" }, { @@ -5990,8 +6888,8 @@ "1", "" ], - "asctime": "2019-12-27 08:39:29,049", - "created": 1577432369.049303, + "asctime": "2020-06-16 09:01:51,681", + "created": 1592290911.68185, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6001,14 +6899,14 @@ "lineno": 26, "message": "Expectation (Submitted value number 1): result = 1 ()", "module": "test", - "msecs": 49.30305480957031, + "msecs": 681.8499565124512, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1684.2451095581055, - "thread": 140570112038720, + "relativeCreated": 1711.0209465026855, + "thread": 139834866980672, "threadName": "MainThread" }, { @@ -6016,8 +6914,8 @@ "1", "" ], - "asctime": "2019-12-27 08:39:29,049", - "created": 1577432369.049341, + "asctime": "2020-06-16 09:01:51,681", + "created": 1592290911.681921, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6027,14 +6925,14 @@ "lineno": 142, "message": "Submitted value number 1 is correct (Content 1 and Type is ).", "module": "test", - "msecs": 49.34096336364746, + "msecs": 681.9210052490234, "msg": "Submitted value number 1 is correct (Content %s and Type is %s).", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1684.2830181121826, - "thread": 140570112038720, + "relativeCreated": 1711.0919952392578, + "thread": 139834866980672, "threadName": "MainThread" }, { @@ -6043,8 +6941,8 @@ "4", "" ], - "asctime": "2019-12-27 08:39:29,049", - "created": 1577432369.049408, + "asctime": "2020-06-16 09:01:51,681", + "created": 1592290911.681993, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6054,14 +6952,14 @@ "lineno": 22, "message": "Result (Submitted value number 2): 4 ()", "module": "test", - "msecs": 49.407958984375, + "msecs": 681.9930076599121, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1684.3500137329102, - "thread": 140570112038720, + "relativeCreated": 1711.1639976501465, + "thread": 139834866980672, "threadName": "MainThread" }, { @@ -6070,8 +6968,8 @@ "4", "" ], - "asctime": "2019-12-27 08:39:29,049", - "created": 1577432369.049459, + "asctime": "2020-06-16 09:01:51,682", + "created": 1592290911.682061, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6081,14 +6979,14 @@ "lineno": 26, "message": "Expectation (Submitted value number 2): result = 4 ()", "module": "test", - "msecs": 49.458980560302734, + "msecs": 682.060956954956, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1684.401035308838, - "thread": 140570112038720, + "relativeCreated": 1711.2319469451904, + "thread": 139834866980672, "threadName": "MainThread" }, { @@ -6096,8 +6994,8 @@ "4", "" ], - "asctime": "2019-12-27 08:39:29,049", - "created": 1577432369.049497, + "asctime": "2020-06-16 09:01:51,682", + "created": 1592290911.68213, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6107,14 +7005,14 @@ "lineno": 142, "message": "Submitted value number 2 is correct (Content 4 and Type is ).", "module": "test", - "msecs": 49.49688911437988, + "msecs": 682.1300983428955, "msg": "Submitted value number 2 is correct (Content %s and Type is %s).", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1684.438943862915, - "thread": 140570112038720, + "relativeCreated": 1711.3010883331299, + "thread": 139834866980672, "threadName": "MainThread" }, { @@ -6123,8 +7021,8 @@ "7", "" ], - "asctime": "2019-12-27 08:39:29,049", - "created": 1577432369.049535, + "asctime": "2020-06-16 09:01:51,682", + "created": 1592290911.682209, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6134,14 +7032,14 @@ "lineno": 22, "message": "Result (Submitted value number 3): 7 ()", "module": "test", - "msecs": 49.53503608703613, + "msecs": 682.2090148925781, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1684.4770908355713, - "thread": 140570112038720, + "relativeCreated": 1711.3800048828125, + "thread": 139834866980672, "threadName": "MainThread" }, { @@ -6150,8 +7048,8 @@ "7", "" ], - "asctime": "2019-12-27 08:39:29,049", - "created": 1577432369.049571, + "asctime": "2020-06-16 09:01:51,682", + "created": 1592290911.682278, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6161,14 +7059,14 @@ "lineno": 26, "message": "Expectation (Submitted value number 3): result = 7 ()", "module": "test", - "msecs": 49.57103729248047, + "msecs": 682.2779178619385, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1684.5130920410156, - "thread": 140570112038720, + "relativeCreated": 1711.4489078521729, + "thread": 139834866980672, "threadName": "MainThread" }, { @@ -6176,8 +7074,8 @@ "7", "" ], - "asctime": "2019-12-27 08:39:29,049", - "created": 1577432369.049612, + "asctime": "2020-06-16 09:01:51,682", + "created": 1592290911.682347, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6187,14 +7085,14 @@ "lineno": 142, "message": "Submitted value number 3 is correct (Content 7 and Type is ).", "module": "test", - "msecs": 49.61204528808594, + "msecs": 682.3470592498779, "msg": "Submitted value number 3 is correct (Content %s and Type is %s).", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1684.554100036621, - "thread": 140570112038720, + "relativeCreated": 1711.5180492401123, + "thread": 139834866980672, "threadName": "MainThread" }, { @@ -6203,8 +7101,8 @@ "10", "" ], - "asctime": "2019-12-27 08:39:29,049", - "created": 1577432369.04965, + "asctime": "2020-06-16 09:01:51,682", + "created": 1592290911.682418, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6214,14 +7112,14 @@ "lineno": 22, "message": "Result (Submitted value number 4): 10 ()", "module": "test", - "msecs": 49.649953842163086, + "msecs": 682.4181079864502, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1684.5920085906982, - "thread": 140570112038720, + "relativeCreated": 1711.5890979766846, + "thread": 139834866980672, "threadName": "MainThread" }, { @@ -6230,8 +7128,8 @@ "10", "" ], - "asctime": "2019-12-27 08:39:29,049", - "created": 1577432369.049685, + "asctime": "2020-06-16 09:01:51,682", + "created": 1592290911.68249, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6241,14 +7139,14 @@ "lineno": 26, "message": "Expectation (Submitted value number 4): result = 10 ()", "module": "test", - "msecs": 49.685001373291016, + "msecs": 682.4901103973389, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1684.6270561218262, - "thread": 140570112038720, + "relativeCreated": 1711.6611003875732, + "thread": 139834866980672, "threadName": "MainThread" }, { @@ -6256,8 +7154,8 @@ "10", "" ], - "asctime": "2019-12-27 08:39:29,049", - "created": 1577432369.049725, + "asctime": "2020-06-16 09:01:51,682", + "created": 1592290911.68259, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6267,32 +7165,32 @@ "lineno": 142, "message": "Submitted value number 4 is correct (Content 10 and Type is ).", "module": "test", - "msecs": 49.72505569458008, + "msecs": 682.5900077819824, "msg": "Submitted value number 4 is correct (Content %s and Type is %s).", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1684.6671104431152, - "thread": 140570112038720, + "relativeCreated": 1711.7609977722168, + "thread": 139834866980672, "threadName": "MainThread" } ], - "msecs": 49.761056900024414, + "msecs": 682.6341152191162, "msg": "Execution of state machine callback (1) (all_transitions, all_conditions) identified by a sequence number: Values and number of submitted values is correct. See detailed log for more information.", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1684.7031116485596, - "thread": 140570112038720, + "relativeCreated": 1711.8051052093506, + "thread": 139834866980672, "threadName": "MainThread", - "time_consumption": 3.600120544433594e-05 + "time_consumption": 4.410743713378906e-05 }, { "args": [], - "asctime": "2019-12-27 08:39:29,050", - "created": 1577432369.050421, + "asctime": "2020-06-16 09:01:51,683", + "created": 1592290911.683364, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6309,8 +7207,8 @@ "[ 2, 5, 8, 11 ]", "" ], - "asctime": "2019-12-27 08:39:29,049", - "created": 1577432369.04983, + "asctime": "2020-06-16 09:01:51,682", + "created": 1592290911.682723, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6320,14 +7218,14 @@ "lineno": 22, "message": "Result (Execution of state machine callback (2) (all_transitions, all_conditions) identified by a sequence number): [ 2, 5, 8, 11 ] ()", "module": "test", - "msecs": 49.829959869384766, + "msecs": 682.7230453491211, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1684.77201461792, - "thread": 140570112038720, + "relativeCreated": 1711.8940353393555, + "thread": 139834866980672, "threadName": "MainThread" }, { @@ -6336,8 +7234,8 @@ "[ 2, 5, 8, 11 ]", "" ], - "asctime": "2019-12-27 08:39:29,049", - "created": 1577432369.049872, + "asctime": "2020-06-16 09:01:51,682", + "created": 1592290911.682773, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6347,14 +7245,14 @@ "lineno": 26, "message": "Expectation (Execution of state machine callback (2) (all_transitions, all_conditions) identified by a sequence number): result = [ 2, 5, 8, 11 ] ()", "module": "test", - "msecs": 49.87192153930664, + "msecs": 682.7731132507324, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1684.8139762878418, - "thread": 140570112038720, + "relativeCreated": 1711.9441032409668, + "thread": 139834866980672, "threadName": "MainThread" }, { @@ -6363,8 +7261,8 @@ "2", "" ], - "asctime": "2019-12-27 08:39:29,049", - "created": 1577432369.049911, + "asctime": "2020-06-16 09:01:51,682", + "created": 1592290911.682819, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6374,14 +7272,14 @@ "lineno": 22, "message": "Result (Submitted value number 1): 2 ()", "module": "test", - "msecs": 49.9110221862793, + "msecs": 682.8188896179199, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1684.8530769348145, - "thread": 140570112038720, + "relativeCreated": 1711.9898796081543, + "thread": 139834866980672, "threadName": "MainThread" }, { @@ -6390,8 +7288,8 @@ "2", "" ], - "asctime": "2019-12-27 08:39:29,049", - "created": 1577432369.049964, + "asctime": "2020-06-16 09:01:51,682", + "created": 1592290911.682862, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6401,14 +7299,14 @@ "lineno": 26, "message": "Expectation (Submitted value number 1): result = 2 ()", "module": "test", - "msecs": 49.963951110839844, + "msecs": 682.8620433807373, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1684.906005859375, - "thread": 140570112038720, + "relativeCreated": 1712.0330333709717, + "thread": 139834866980672, "threadName": "MainThread" }, { @@ -6416,8 +7314,8 @@ "2", "" ], - "asctime": "2019-12-27 08:39:29,050", - "created": 1577432369.050013, + "asctime": "2020-06-16 09:01:51,682", + "created": 1592290911.682909, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6427,14 +7325,14 @@ "lineno": 142, "message": "Submitted value number 1 is correct (Content 2 and Type is ).", "module": "test", - "msecs": 50.013065338134766, + "msecs": 682.9090118408203, "msg": "Submitted value number 1 is correct (Content %s and Type is %s).", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1684.95512008667, - "thread": 140570112038720, + "relativeCreated": 1712.0800018310547, + "thread": 139834866980672, "threadName": "MainThread" }, { @@ -6443,8 +7341,8 @@ "5", "" ], - "asctime": "2019-12-27 08:39:29,050", - "created": 1577432369.050054, + "asctime": "2020-06-16 09:01:51,682", + "created": 1592290911.682954, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6454,14 +7352,14 @@ "lineno": 22, "message": "Result (Submitted value number 2): 5 ()", "module": "test", - "msecs": 50.054073333740234, + "msecs": 682.9540729522705, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1684.9961280822754, - "thread": 140570112038720, + "relativeCreated": 1712.1250629425049, + "thread": 139834866980672, "threadName": "MainThread" }, { @@ -6470,8 +7368,8 @@ "5", "" ], - "asctime": "2019-12-27 08:39:29,050", - "created": 1577432369.05009, + "asctime": "2020-06-16 09:01:51,682", + "created": 1592290911.682997, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6481,14 +7379,14 @@ "lineno": 26, "message": "Expectation (Submitted value number 2): result = 5 ()", "module": "test", - "msecs": 50.09007453918457, + "msecs": 682.9969882965088, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1685.0321292877197, - "thread": 140570112038720, + "relativeCreated": 1712.1679782867432, + "thread": 139834866980672, "threadName": "MainThread" }, { @@ -6496,8 +7394,8 @@ "5", "" ], - "asctime": "2019-12-27 08:39:29,050", - "created": 1577432369.050127, + "asctime": "2020-06-16 09:01:51,683", + "created": 1592290911.683041, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6507,14 +7405,14 @@ "lineno": 142, "message": "Submitted value number 2 is correct (Content 5 and Type is ).", "module": "test", - "msecs": 50.12702941894531, + "msecs": 683.0410957336426, "msg": "Submitted value number 2 is correct (Content %s and Type is %s).", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1685.0690841674805, - "thread": 140570112038720, + "relativeCreated": 1712.212085723877, + "thread": 139834866980672, "threadName": "MainThread" }, { @@ -6523,8 +7421,8 @@ "8", "" ], - "asctime": "2019-12-27 08:39:29,050", - "created": 1577432369.050165, + "asctime": "2020-06-16 09:01:51,683", + "created": 1592290911.683092, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6534,14 +7432,14 @@ "lineno": 22, "message": "Result (Submitted value number 3): 8 ()", "module": "test", - "msecs": 50.16493797302246, + "msecs": 683.0921173095703, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1685.1069927215576, - "thread": 140570112038720, + "relativeCreated": 1712.2631072998047, + "thread": 139834866980672, "threadName": "MainThread" }, { @@ -6550,8 +7448,8 @@ "8", "" ], - "asctime": "2019-12-27 08:39:29,050", - "created": 1577432369.050222, + "asctime": "2020-06-16 09:01:51,683", + "created": 1592290911.683135, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6561,14 +7459,14 @@ "lineno": 26, "message": "Expectation (Submitted value number 3): result = 8 ()", "module": "test", - "msecs": 50.221920013427734, + "msecs": 683.1350326538086, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1685.163974761963, - "thread": 140570112038720, + "relativeCreated": 1712.306022644043, + "thread": 139834866980672, "threadName": "MainThread" }, { @@ -6576,8 +7474,8 @@ "8", "" ], - "asctime": "2019-12-27 08:39:29,050", - "created": 1577432369.050271, + "asctime": "2020-06-16 09:01:51,683", + "created": 1592290911.683178, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6587,14 +7485,14 @@ "lineno": 142, "message": "Submitted value number 3 is correct (Content 8 and Type is ).", "module": "test", - "msecs": 50.271034240722656, + "msecs": 683.1779479980469, "msg": "Submitted value number 3 is correct (Content %s and Type is %s).", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1685.2130889892578, - "thread": 140570112038720, + "relativeCreated": 1712.3489379882812, + "thread": 139834866980672, "threadName": "MainThread" }, { @@ -6603,8 +7501,8 @@ "11", "" ], - "asctime": "2019-12-27 08:39:29,050", - "created": 1577432369.050313, + "asctime": "2020-06-16 09:01:51,683", + "created": 1592290911.683222, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6614,14 +7512,14 @@ "lineno": 22, "message": "Result (Submitted value number 4): 11 ()", "module": "test", - "msecs": 50.31299591064453, + "msecs": 683.2220554351807, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1685.2550506591797, - "thread": 140570112038720, + "relativeCreated": 1712.393045425415, + "thread": 139834866980672, "threadName": "MainThread" }, { @@ -6630,8 +7528,8 @@ "11", "" ], - "asctime": "2019-12-27 08:39:29,050", - "created": 1577432369.050349, + "asctime": "2020-06-16 09:01:51,683", + "created": 1592290911.683274, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6641,14 +7539,14 @@ "lineno": 26, "message": "Expectation (Submitted value number 4): result = 11 ()", "module": "test", - "msecs": 50.34899711608887, + "msecs": 683.2740306854248, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1685.291051864624, - "thread": 140570112038720, + "relativeCreated": 1712.4450206756592, + "thread": 139834866980672, "threadName": "MainThread" }, { @@ -6656,8 +7554,8 @@ "11", "" ], - "asctime": "2019-12-27 08:39:29,050", - "created": 1577432369.050385, + "asctime": "2020-06-16 09:01:51,683", + "created": 1592290911.683323, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6667,39 +7565,39 @@ "lineno": 142, "message": "Submitted value number 4 is correct (Content 11 and Type is ).", "module": "test", - "msecs": 50.3849983215332, + "msecs": 683.3229064941406, "msg": "Submitted value number 4 is correct (Content %s and Type is %s).", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1685.3270530700684, - "thread": 140570112038720, + "relativeCreated": 1712.493896484375, + "thread": 139834866980672, "threadName": "MainThread" } ], - "msecs": 50.42099952697754, + "msecs": 683.3639144897461, "msg": "Execution of state machine callback (2) (all_transitions, all_conditions) identified by a sequence number: Values and number of submitted values is correct. See detailed log for more information.", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 1685.3630542755127, - "thread": 140570112038720, + "relativeCreated": 1712.5349044799805, + "thread": 139834866980672, "threadName": "MainThread", - "time_consumption": 3.600120544433594e-05 + "time_consumption": 4.100799560546875e-05 } ], - "thread": 140570112038720, + "thread": 139834866980672, "threadName": "MainThread", - "time_consumption": 0.002196073532104492, - "time_finished": "2019-12-27 08:39:29,050", - "time_start": "2019-12-27 08:39:29,048" + "time_consumption": 0.0041158199310302734, + "time_finished": "2020-06-16 09:01:51,683", + "time_start": "2020-06-16 09:01:51,679" }, "_fE3tMHczEemrUqotql_Blw": { "args": null, - "asctime": "2019-12-27 08:39:27,395", - "created": 1577432367.395118, + "asctime": "2020-06-16 09:01:50,032", + "created": 1592290910.032223, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -6710,18 +7608,18 @@ "message": "_fE3tMHczEemrUqotql_Blw", "module": "__init__", "moduleLogger": [], - "msecs": 395.11799812316895, + "msecs": 32.22298622131348, "msg": "_fE3tMHczEemrUqotql_Blw", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/__init__.py", - "process": 8622, + "pathname": "/user_data/data/dirk/prj/unittest/state_machine/unittest/src/tests/__init__.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 30.0600528717041, + "relativeCreated": 61.39397621154785, "testcaseLogger": [ { "args": [], - "asctime": "2019-12-27 08:39:27,395", - "created": 1577432367.395262, + "asctime": "2020-06-16 09:01:50,032", + "created": 1592290910.03274, "exc_info": null, "exc_text": null, "filename": "test_transitions.py", @@ -6739,46 +7637,46 @@ "None", "'state_a'" ], - "asctime": "2019-12-27 08:39:27,395", - "created": 1577432367.39521, + "asctime": "2020-06-16 09:01:50,032", + "created": 1592290910.032582, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__set_state__", "levelname": "DEBUG", "levelno": 10, - "lineno": 174, + "lineno": 176, "message": "StateMachine: State change ('__init__'): None -> 'state_a'", "module": "__init__", - "msecs": 395.21002769470215, + "msecs": 32.58204460144043, "msg": "%s State change (%s): %s -> %s", "name": "STATE_MACHINE", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/state_machine/__init__.py", - "process": 8622, + "pathname": "src/state_machine/__init__.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 30.152082443237305, - "thread": 140570112038720, + "relativeCreated": 61.753034591674805, + "thread": 139834866980672, "threadName": "MainThread" } ], - "msecs": 395.2620029449463, + "msecs": 32.740116119384766, "msg": "Initialising state machine with state_a", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_transitions.py", - "process": 8622, + "pathname": "src/tests/test_transitions.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 30.204057693481445, - "thread": 140570112038720, + "relativeCreated": 61.91110610961914, + "thread": 139834866980672, "threadName": "MainThread", - "time_consumption": 5.1975250244140625e-05 + "time_consumption": 0.00015807151794433594 }, { "args": [ "'state_a'", "" ], - "asctime": "2019-12-27 08:39:27,395", - "created": 1577432367.395409, + "asctime": "2020-06-16 09:01:50,032", + "created": 1592290910.032979, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6795,8 +7693,8 @@ "'state_a'", "" ], - "asctime": "2019-12-27 08:39:27,395", - "created": 1577432367.395326, + "asctime": "2020-06-16 09:01:50,032", + "created": 1592290910.032831, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6806,14 +7704,14 @@ "lineno": 22, "message": "Result (Initial state after Initialisation): 'state_a' ()", "module": "test", - "msecs": 395.3258991241455, + "msecs": 32.83095359802246, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 30.267953872680664, - "thread": 140570112038720, + "relativeCreated": 62.001943588256836, + "thread": 139834866980672, "threadName": "MainThread" }, { @@ -6822,8 +7720,8 @@ "'state_a'", "" ], - "asctime": "2019-12-27 08:39:27,395", - "created": 1577432367.395367, + "asctime": "2020-06-16 09:01:50,032", + "created": 1592290910.032904, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6833,34 +7731,34 @@ "lineno": 26, "message": "Expectation (Initial state after Initialisation): result = 'state_a' ()", "module": "test", - "msecs": 395.366907119751, + "msecs": 32.90390968322754, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 30.308961868286133, - "thread": 140570112038720, + "relativeCreated": 62.074899673461914, + "thread": 139834866980672, "threadName": "MainThread" } ], - "msecs": 395.40910720825195, + "msecs": 32.97901153564453, "msg": "Initial state after Initialisation is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 30.35116195678711, - "thread": 140570112038720, + "relativeCreated": 62.150001525878906, + "thread": 139834866980672, "threadName": "MainThread", - "time_consumption": 4.220008850097656e-05 + "time_consumption": 7.510185241699219e-05 }, { "args": [ 0.16 ], - "asctime": "2019-12-27 08:39:27,546", - "created": 1577432367.546092, + "asctime": "2020-06-16 09:01:50,183", + "created": 1592290910.183514, "exc_info": null, "exc_text": null, "filename": "test_transitions.py", @@ -6878,46 +7776,46 @@ "'state_a'", "'state_b'" ], - "asctime": "2019-12-27 08:39:27,545", - "created": 1577432367.545599, + "asctime": "2020-06-16 09:01:50,183", + "created": 1592290910.183178, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__set_state__", "levelname": "DEBUG", "levelno": 10, - "lineno": 174, + "lineno": 176, "message": "StateMachine: State change ('condition_true'): 'state_a' -> 'state_b'", "module": "__init__", - "msecs": 545.5989837646484, + "msecs": 183.17794799804688, "msg": "%s State change (%s): %s -> %s", "name": "STATE_MACHINE", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/state_machine/__init__.py", - "process": 8622, + "pathname": "src/state_machine/__init__.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 180.5410385131836, - "thread": 140570112038720, + "relativeCreated": 212.34893798828125, + "thread": 139834866980672, "threadName": "MainThread" } ], - "msecs": 546.0920333862305, + "msecs": 183.51411819458008, "msg": "Waiting for %.3fs or state change", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_transitions.py", - "process": 8622, + "pathname": "src/tests/test_transitions.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 181.03408813476562, - "thread": 140570112038720, + "relativeCreated": 212.68510818481445, + "thread": 139834866980672, "threadName": "MainThread", - "time_consumption": 0.0004930496215820312 + "time_consumption": 0.0003361701965332031 }, { "args": [ "'state_b'", "" ], - "asctime": "2019-12-27 08:39:27,547", - "created": 1577432367.547038, + "asctime": "2020-06-16 09:01:50,183", + "created": 1592290910.183933, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6934,8 +7832,8 @@ "'state_b'", "" ], - "asctime": "2019-12-27 08:39:27,546", - "created": 1577432367.546641, + "asctime": "2020-06-16 09:01:50,183", + "created": 1592290910.183786, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6945,14 +7843,14 @@ "lineno": 22, "message": "Result (State after 1st cycle): 'state_b' ()", "module": "test", - "msecs": 546.6411113739014, + "msecs": 183.78591537475586, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 181.58316612243652, - "thread": 140570112038720, + "relativeCreated": 212.95690536499023, + "thread": 139834866980672, "threadName": "MainThread" }, { @@ -6961,8 +7859,8 @@ "'state_b'", "" ], - "asctime": "2019-12-27 08:39:27,546", - "created": 1577432367.546832, + "asctime": "2020-06-16 09:01:50,183", + "created": 1592290910.183863, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6972,37 +7870,37 @@ "lineno": 26, "message": "Expectation (State after 1st cycle): result = 'state_b' ()", "module": "test", - "msecs": 546.8320846557617, + "msecs": 183.86292457580566, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 181.77413940429688, - "thread": 140570112038720, + "relativeCreated": 213.03391456604004, + "thread": 139834866980672, "threadName": "MainThread" } ], - "msecs": 547.0380783081055, + "msecs": 183.93301963806152, "msg": "State after 1st cycle is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 181.98013305664062, - "thread": 140570112038720, + "relativeCreated": 213.1040096282959, + "thread": 139834866980672, "threadName": "MainThread", - "time_consumption": 0.00020599365234375 + "time_consumption": 7.009506225585938e-05 }, { "args": [ - "0.15059781074523926", + "0.15041112899780273", "0.145", "0.155", "" ], - "asctime": "2019-12-27 08:39:27,547", - "created": 1577432367.547609, + "asctime": "2020-06-16 09:01:50,184", + "created": 1592290910.184187, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -7010,17 +7908,17 @@ "levelname": "INFO", "levelno": 20, "lineno": 218, - "message": "Transition time after 1st cycle is correct (Content 0.15059781074523926 in [0.145 ... 0.155] and Type is ).", + "message": "Transition time after 1st cycle is correct (Content 0.15041112899780273 in [0.145 ... 0.155] and Type is ).", "module": "test", "moduleLogger": [ { "args": [ "Transition time after 1st cycle", - "0.15059781074523926", + "0.15041112899780273", "" ], - "asctime": "2019-12-27 08:39:27,547", - "created": 1577432367.547298, + "asctime": "2020-06-16 09:01:50,184", + "created": 1592290910.184045, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -7028,16 +7926,16 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 22, - "message": "Result (Transition time after 1st cycle): 0.15059781074523926 ()", + "message": "Result (Transition time after 1st cycle): 0.15041112899780273 ()", "module": "test", - "msecs": 547.2979545593262, + "msecs": 184.04507637023926, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 182.24000930786133, - "thread": 140570112038720, + "relativeCreated": 213.21606636047363, + "thread": 139834866980672, "threadName": "MainThread" }, { @@ -7046,8 +7944,8 @@ "0.145", "0.155" ], - "asctime": "2019-12-27 08:39:27,547", - "created": 1577432367.547457, + "asctime": "2020-06-16 09:01:50,184", + "created": 1592290910.184113, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -7057,34 +7955,34 @@ "lineno": 30, "message": "Expectation (Transition time after 1st cycle): 0.145 <= result <= 0.155", "module": "test", - "msecs": 547.4569797515869, + "msecs": 184.1130256652832, "msg": "Expectation (%s): %s <= result <= %s", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 182.39903450012207, - "thread": 140570112038720, + "relativeCreated": 213.28401565551758, + "thread": 139834866980672, "threadName": "MainThread" } ], - "msecs": 547.6090908050537, + "msecs": 184.1869354248047, "msg": "Transition time after 1st cycle is correct (Content %s in [%s ... %s] and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 182.55114555358887, - "thread": 140570112038720, + "relativeCreated": 213.35792541503906, + "thread": 139834866980672, "threadName": "MainThread", - "time_consumption": 0.00015211105346679688 + "time_consumption": 7.390975952148438e-05 }, { "args": [ 0.235 ], - "asctime": "2019-12-27 08:39:27,773", - "created": 1577432367.773521, + "asctime": "2020-06-16 09:01:50,410", + "created": 1592290910.410605, "exc_info": null, "exc_text": null, "filename": "test_transitions.py", @@ -7102,46 +8000,46 @@ "'state_b'", "'state_c'" ], - "asctime": "2019-12-27 08:39:27,773", - "created": 1577432367.773051, + "asctime": "2020-06-16 09:01:50,409", + "created": 1592290910.409581, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__set_state__", "levelname": "DEBUG", "levelno": 10, - "lineno": 174, + "lineno": 176, "message": "StateMachine: State change ('condition_true'): 'state_b' -> 'state_c'", "module": "__init__", - "msecs": 773.0510234832764, + "msecs": 409.58094596862793, "msg": "%s State change (%s): %s -> %s", "name": "STATE_MACHINE", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/state_machine/__init__.py", - "process": 8622, + "pathname": "src/state_machine/__init__.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 407.9930782318115, - "thread": 140570112038720, + "relativeCreated": 438.7519359588623, + "thread": 139834866980672, "threadName": "MainThread" } ], - "msecs": 773.5209465026855, + "msecs": 410.60495376586914, "msg": "Waiting for %.3fs or state change", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_transitions.py", - "process": 8622, + "pathname": "src/tests/test_transitions.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 408.4630012512207, - "thread": 140570112038720, + "relativeCreated": 439.7759437561035, + "thread": 139834866980672, "threadName": "MainThread", - "time_consumption": 0.0004699230194091797 + "time_consumption": 0.001024007797241211 }, { "args": [ "'state_c'", "" ], - "asctime": "2019-12-27 08:39:27,774", - "created": 1577432367.774207, + "asctime": "2020-06-16 09:01:50,412", + "created": 1592290910.412201, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -7158,8 +8056,8 @@ "'state_c'", "" ], - "asctime": "2019-12-27 08:39:27,773", - "created": 1577432367.773866, + "asctime": "2020-06-16 09:01:50,411", + "created": 1592290910.41166, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -7169,14 +8067,14 @@ "lineno": 22, "message": "Result (State after 2nd cycle): 'state_c' ()", "module": "test", - "msecs": 773.8659381866455, + "msecs": 411.65995597839355, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 408.80799293518066, - "thread": 140570112038720, + "relativeCreated": 440.83094596862793, + "thread": 139834866980672, "threadName": "MainThread" }, { @@ -7185,8 +8083,8 @@ "'state_c'", "" ], - "asctime": "2019-12-27 08:39:27,774", - "created": 1577432367.774039, + "asctime": "2020-06-16 09:01:50,412", + "created": 1592290910.412001, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -7196,37 +8094,37 @@ "lineno": 26, "message": "Expectation (State after 2nd cycle): result = 'state_c' ()", "module": "test", - "msecs": 774.0390300750732, + "msecs": 412.0008945465088, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 408.9810848236084, - "thread": 140570112038720, + "relativeCreated": 441.17188453674316, + "thread": 139834866980672, "threadName": "MainThread" } ], - "msecs": 774.2071151733398, + "msecs": 412.200927734375, "msg": "State after 2nd cycle is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 409.149169921875, - "thread": 140570112038720, + "relativeCreated": 441.3719177246094, + "thread": 139834866980672, "threadName": "MainThread", - "time_consumption": 0.00016808509826660156 + "time_consumption": 0.00020003318786621094 }, { "args": [ - "0.15039491653442383", + "0.15091490745544434", "0.145", "0.155", "" ], - "asctime": "2019-12-27 08:39:27,774", - "created": 1577432367.774797, + "asctime": "2020-06-16 09:01:50,412", + "created": 1592290910.412908, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -7234,17 +8132,17 @@ "levelname": "INFO", "levelno": 20, "lineno": 218, - "message": "Transition time after 2nd cycle is correct (Content 0.15039491653442383 in [0.145 ... 0.155] and Type is ).", + "message": "Transition time after 2nd cycle is correct (Content 0.15091490745544434 in [0.145 ... 0.155] and Type is ).", "module": "test", "moduleLogger": [ { "args": [ "Transition time after 2nd cycle", - "0.15039491653442383", + "0.15091490745544434", "" ], - "asctime": "2019-12-27 08:39:27,774", - "created": 1577432367.774447, + "asctime": "2020-06-16 09:01:50,412", + "created": 1592290910.412517, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -7252,16 +8150,16 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 22, - "message": "Result (Transition time after 2nd cycle): 0.15039491653442383 ()", + "message": "Result (Transition time after 2nd cycle): 0.15091490745544434 ()", "module": "test", - "msecs": 774.446964263916, + "msecs": 412.5170707702637, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 409.3890190124512, - "thread": 140570112038720, + "relativeCreated": 441.68806076049805, + "thread": 139834866980672, "threadName": "MainThread" }, { @@ -7270,8 +8168,8 @@ "0.145", "0.155" ], - "asctime": "2019-12-27 08:39:27,774", - "created": 1577432367.774644, + "asctime": "2020-06-16 09:01:50,412", + "created": 1592290910.412747, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -7281,37 +8179,37 @@ "lineno": 30, "message": "Expectation (Transition time after 2nd cycle): 0.145 <= result <= 0.155", "module": "test", - "msecs": 774.6438980102539, + "msecs": 412.7469062805176, "msg": "Expectation (%s): %s <= result <= %s", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 409.58595275878906, - "thread": 140570112038720, + "relativeCreated": 441.91789627075195, + "thread": 139834866980672, "threadName": "MainThread" } ], - "msecs": 774.7969627380371, + "msecs": 412.90807723999023, "msg": "Transition time after 2nd cycle is correct (Content %s in [%s ... %s] and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 409.73901748657227, - "thread": 140570112038720, + "relativeCreated": 442.0790672302246, + "thread": 139834866980672, "threadName": "MainThread", - "time_consumption": 0.00015306472778320312 + "time_consumption": 0.00016117095947265625 }, { "args": [ - "0.22565913200378418", + "0.22620105743408203", "0.21999999999999997", "0.22999999999999998", "" ], - "asctime": "2019-12-27 08:39:27,775", - "created": 1577432367.775311, + "asctime": "2020-06-16 09:01:50,413", + "created": 1592290910.413464, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -7319,17 +8217,17 @@ "levelname": "INFO", "levelno": 20, "lineno": 218, - "message": "Previous state duration is correct (Content 0.22565913200378418 in [0.21999999999999997 ... 0.22999999999999998] and Type is ).", + "message": "Previous state duration is correct (Content 0.22620105743408203 in [0.21999999999999997 ... 0.22999999999999998] and Type is ).", "module": "test", "moduleLogger": [ { "args": [ "Previous state duration", - "0.22565913200378418", + "0.22620105743408203", "" ], - "asctime": "2019-12-27 08:39:27,775", - "created": 1577432367.775022, + "asctime": "2020-06-16 09:01:50,413", + "created": 1592290910.413155, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -7337,16 +8235,16 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 22, - "message": "Result (Previous state duration): 0.22565913200378418 ()", + "message": "Result (Previous state duration): 0.22620105743408203 ()", "module": "test", - "msecs": 775.022029876709, + "msecs": 413.15507888793945, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 409.96408462524414, - "thread": 140570112038720, + "relativeCreated": 442.3260688781738, + "thread": 139834866980672, "threadName": "MainThread" }, { @@ -7355,8 +8253,8 @@ "0.21999999999999997", "0.22999999999999998" ], - "asctime": "2019-12-27 08:39:27,775", - "created": 1577432367.77517, + "asctime": "2020-06-16 09:01:50,413", + "created": 1592290910.413303, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -7366,39 +8264,39 @@ "lineno": 30, "message": "Expectation (Previous state duration): 0.21999999999999997 <= result <= 0.22999999999999998", "module": "test", - "msecs": 775.170087814331, + "msecs": 413.3028984069824, "msg": "Expectation (%s): %s <= result <= %s", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 410.1121425628662, - "thread": 140570112038720, + "relativeCreated": 442.4738883972168, + "thread": 139834866980672, "threadName": "MainThread" } ], - "msecs": 775.3109931945801, + "msecs": 413.4640693664551, "msg": "Previous state duration is correct (Content %s in [%s ... %s] and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 410.25304794311523, - "thread": 140570112038720, + "relativeCreated": 442.63505935668945, + "thread": 139834866980672, "threadName": "MainThread", - "time_consumption": 0.00014090538024902344 + "time_consumption": 0.00016117095947265625 } ], - "thread": 140570112038720, + "thread": 139834866980672, "threadName": "MainThread", - "time_consumption": 0.38019299507141113, - "time_finished": "2019-12-27 08:39:27,775", - "time_start": "2019-12-27 08:39:27,395" + "time_consumption": 0.3812410831451416, + "time_finished": "2020-06-16 09:01:50,413", + "time_start": "2020-06-16 09:01:50,032" }, "_iTFPQHcrEemrUqotql_Blw": { "args": null, - "asctime": "2019-12-27 08:39:27,392", - "created": 1577432367.39294, + "asctime": "2020-06-16 09:01:50,023", + "created": 1592290910.023425, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -7409,18 +8307,18 @@ "message": "_iTFPQHcrEemrUqotql_Blw", "module": "__init__", "moduleLogger": [], - "msecs": 392.9400444030762, + "msecs": 23.42510223388672, "msg": "_iTFPQHcrEemrUqotql_Blw", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/__init__.py", - "process": 8622, + "pathname": "/user_data/data/dirk/prj/unittest/state_machine/unittest/src/tests/__init__.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 27.882099151611328, + "relativeCreated": 52.596092224121094, "testcaseLogger": [ { "args": [], - "asctime": "2019-12-27 08:39:27,393", - "created": 1577432367.393151, + "asctime": "2020-06-16 09:01:50,023", + "created": 1592290910.023673, "exc_info": null, "exc_text": null, "filename": "test_init.py", @@ -7438,46 +8336,46 @@ "None", "'state_c'" ], - "asctime": "2019-12-27 08:39:27,393", - "created": 1577432367.393053, + "asctime": "2020-06-16 09:01:50,023", + "created": 1592290910.02352, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__set_state__", "levelname": "DEBUG", "levelno": 10, - "lineno": 174, + "lineno": 176, "message": "StateMachine: State change ('__init__'): None -> 'state_c'", "module": "__init__", - "msecs": 393.0530548095703, + "msecs": 23.51999282836914, "msg": "%s State change (%s): %s -> %s", "name": "STATE_MACHINE", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/state_machine/__init__.py", - "process": 8622, + "pathname": "src/state_machine/__init__.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 27.99510955810547, - "thread": 140570112038720, + "relativeCreated": 52.690982818603516, + "thread": 139834866980672, "threadName": "MainThread" } ], - "msecs": 393.15104484558105, + "msecs": 23.673057556152344, "msg": "Initialising the state machine with state_c", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_init.py", - "process": 8622, + "pathname": "src/tests/test_init.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 28.09309959411621, - "thread": 140570112038720, + "relativeCreated": 52.84404754638672, + "thread": 139834866980672, "threadName": "MainThread", - "time_consumption": 9.799003601074219e-05 + "time_consumption": 0.00015306472778320312 }, { "args": [ "{'1': 1, '2': 'two'}", "" ], - "asctime": "2019-12-27 08:39:27,393", - "created": 1577432367.393332, + "asctime": "2020-06-16 09:01:50,025", + "created": 1592290910.025115, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -7494,8 +8392,8 @@ "{ '1': 1, '2': 'two' }", "" ], - "asctime": "2019-12-27 08:39:27,393", - "created": 1577432367.393228, + "asctime": "2020-06-16 09:01:50,024", + "created": 1592290910.024556, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -7505,14 +8403,14 @@ "lineno": 22, "message": "Result (Keyword argument kw_arg_no_4 stored in state_machine): { '1': 1, '2': 'two' } ()", "module": "test", - "msecs": 393.22805404663086, + "msecs": 24.55592155456543, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 28.170108795166016, - "thread": 140570112038720, + "relativeCreated": 53.726911544799805, + "thread": 139834866980672, "threadName": "MainThread" }, { @@ -7521,8 +8419,8 @@ "{ '1': 1, '2': 'two' }", "" ], - "asctime": "2019-12-27 08:39:27,393", - "created": 1577432367.393274, + "asctime": "2020-06-16 09:01:50,024", + "created": 1592290910.0249, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -7532,35 +8430,35 @@ "lineno": 26, "message": "Expectation (Keyword argument kw_arg_no_4 stored in state_machine): result = { '1': 1, '2': 'two' } ()", "module": "test", - "msecs": 393.27406883239746, + "msecs": 24.899959564208984, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 28.216123580932617, - "thread": 140570112038720, + "relativeCreated": 54.07094955444336, + "thread": 139834866980672, "threadName": "MainThread" } ], - "msecs": 393.33200454711914, + "msecs": 25.115013122558594, "msg": "Keyword argument kw_arg_no_4 stored in state_machine is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 28.274059295654297, - "thread": 140570112038720, + "relativeCreated": 54.28600311279297, + "thread": 139834866980672, "threadName": "MainThread", - "time_consumption": 5.793571472167969e-05 + "time_consumption": 0.00021505355834960938 }, { "args": [ "1", "" ], - "asctime": "2019-12-27 08:39:27,393", - "created": 1577432367.393533, + "asctime": "2020-06-16 09:01:50,025", + "created": 1592290910.025653, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -7577,8 +8475,8 @@ "1", "" ], - "asctime": "2019-12-27 08:39:27,393", - "created": 1577432367.393438, + "asctime": "2020-06-16 09:01:50,025", + "created": 1592290910.02537, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -7588,14 +8486,14 @@ "lineno": 22, "message": "Result (Keyword argument kw_arg_no_1 stored in state_machine): 1 ()", "module": "test", - "msecs": 393.43810081481934, + "msecs": 25.369882583618164, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 28.380155563354492, - "thread": 140570112038720, + "relativeCreated": 54.54087257385254, + "thread": 139834866980672, "threadName": "MainThread" }, { @@ -7604,8 +8502,8 @@ "1", "" ], - "asctime": "2019-12-27 08:39:27,393", - "created": 1577432367.39349, + "asctime": "2020-06-16 09:01:50,025", + "created": 1592290910.025515, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -7615,35 +8513,35 @@ "lineno": 26, "message": "Expectation (Keyword argument kw_arg_no_1 stored in state_machine): result = 1 ()", "module": "test", - "msecs": 393.4900760650635, + "msecs": 25.515079498291016, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 28.432130813598633, - "thread": 140570112038720, + "relativeCreated": 54.68606948852539, + "thread": 139834866980672, "threadName": "MainThread" } ], - "msecs": 393.53299140930176, + "msecs": 25.65288543701172, "msg": "Keyword argument kw_arg_no_1 stored in state_machine is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 28.475046157836914, - "thread": 140570112038720, + "relativeCreated": 54.823875427246094, + "thread": 139834866980672, "threadName": "MainThread", - "time_consumption": 4.291534423828125e-05 + "time_consumption": 0.00013780593872070312 }, { "args": [ "True", "" ], - "asctime": "2019-12-27 08:39:27,393", - "created": 1577432367.393671, + "asctime": "2020-06-16 09:01:50,026", + "created": 1592290910.026331, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -7660,8 +8558,8 @@ "True", "" ], - "asctime": "2019-12-27 08:39:27,393", - "created": 1577432367.393594, + "asctime": "2020-06-16 09:01:50,025", + "created": 1592290910.025881, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -7671,14 +8569,14 @@ "lineno": 22, "message": "Result (Keyword argument kw_arg_no_3 stored in state_machine): True ()", "module": "test", - "msecs": 393.59402656555176, + "msecs": 25.881052017211914, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 28.536081314086914, - "thread": 140570112038720, + "relativeCreated": 55.05204200744629, + "thread": 139834866980672, "threadName": "MainThread" }, { @@ -7687,8 +8585,8 @@ "True", "" ], - "asctime": "2019-12-27 08:39:27,393", - "created": 1577432367.393632, + "asctime": "2020-06-16 09:01:50,026", + "created": 1592290910.026098, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -7698,35 +8596,35 @@ "lineno": 26, "message": "Expectation (Keyword argument kw_arg_no_3 stored in state_machine): result = True ()", "module": "test", - "msecs": 393.6319351196289, + "msecs": 26.098012924194336, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 28.573989868164062, - "thread": 140570112038720, + "relativeCreated": 55.26900291442871, + "thread": 139834866980672, "threadName": "MainThread" } ], - "msecs": 393.67103576660156, + "msecs": 26.330947875976562, "msg": "Keyword argument kw_arg_no_3 stored in state_machine is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 28.61309051513672, - "thread": 140570112038720, + "relativeCreated": 55.50193786621094, + "thread": 139834866980672, "threadName": "MainThread", - "time_consumption": 3.910064697265625e-05 + "time_consumption": 0.00023293495178222656 }, { "args": [ "'2'", "" ], - "asctime": "2019-12-27 08:39:27,393", - "created": 1577432367.393815, + "asctime": "2020-06-16 09:01:50,027", + "created": 1592290910.02738, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -7743,8 +8641,8 @@ "'2'", "" ], - "asctime": "2019-12-27 08:39:27,393", - "created": 1577432367.393731, + "asctime": "2020-06-16 09:01:50,026", + "created": 1592290910.026947, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -7754,14 +8652,14 @@ "lineno": 22, "message": "Result (Keyword argument kw_arg_no_2 stored in state_machine): '2' ()", "module": "test", - "msecs": 393.73111724853516, + "msecs": 26.947021484375, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 28.673171997070312, - "thread": 140570112038720, + "relativeCreated": 56.118011474609375, + "thread": 139834866980672, "threadName": "MainThread" }, { @@ -7770,8 +8668,8 @@ "'2'", "" ], - "asctime": "2019-12-27 08:39:27,393", - "created": 1577432367.393772, + "asctime": "2020-06-16 09:01:50,027", + "created": 1592290910.027191, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -7781,39 +8679,39 @@ "lineno": 26, "message": "Expectation (Keyword argument kw_arg_no_2 stored in state_machine): result = '2' ()", "module": "test", - "msecs": 393.7718868255615, + "msecs": 27.1909236907959, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 28.71394157409668, - "thread": 140570112038720, + "relativeCreated": 56.36191368103027, + "thread": 139834866980672, "threadName": "MainThread" } ], - "msecs": 393.8150405883789, + "msecs": 27.379989624023438, "msg": "Keyword argument kw_arg_no_2 stored in state_machine is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 28.757095336914062, - "thread": 140570112038720, + "relativeCreated": 56.55097961425781, + "thread": 139834866980672, "threadName": "MainThread", - "time_consumption": 4.315376281738281e-05 + "time_consumption": 0.00018906593322753906 } ], - "thread": 140570112038720, + "thread": 139834866980672, "threadName": "MainThread", - "time_consumption": 0.0008749961853027344, - "time_finished": "2019-12-27 08:39:27,393", - "time_start": "2019-12-27 08:39:27,392" + "time_consumption": 0.003954887390136719, + "time_finished": "2020-06-16 09:01:50,027", + "time_start": "2020-06-16 09:01:50,023" }, "_j2FvkHcqEemrUqotql_Blw": { "args": null, - "asctime": "2019-12-27 08:39:27,392", - "created": 1577432367.39219, + "asctime": "2020-06-16 09:01:50,022", + "created": 1592290910.022504, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -7824,18 +8722,18 @@ "message": "_j2FvkHcqEemrUqotql_Blw", "module": "__init__", "moduleLogger": [], - "msecs": 392.18997955322266, + "msecs": 22.504091262817383, "msg": "_j2FvkHcqEemrUqotql_Blw", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/__init__.py", - "process": 8622, + "pathname": "/user_data/data/dirk/prj/unittest/state_machine/unittest/src/tests/__init__.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 27.132034301757812, + "relativeCreated": 51.67508125305176, "testcaseLogger": [ { "args": [], - "asctime": "2019-12-27 08:39:27,392", - "created": 1577432367.392308, + "asctime": "2020-06-16 09:01:50,022", + "created": 1592290910.022693, "exc_info": null, "exc_text": null, "filename": "test_init.py", @@ -7853,46 +8751,46 @@ "None", "'state_c'" ], - "asctime": "2019-12-27 08:39:27,392", - "created": 1577432367.392261, + "asctime": "2020-06-16 09:01:50,022", + "created": 1592290910.022604, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__set_state__", "levelname": "DEBUG", "levelno": 10, - "lineno": 174, + "lineno": 176, "message": "StateMachine: State change ('__init__'): None -> 'state_c'", "module": "__init__", - "msecs": 392.2610282897949, + "msecs": 22.603988647460938, "msg": "%s State change (%s): %s -> %s", "name": "STATE_MACHINE", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/state_machine/__init__.py", - "process": 8622, + "pathname": "src/state_machine/__init__.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 27.203083038330078, - "thread": 140570112038720, + "relativeCreated": 51.77497863769531, + "thread": 139834866980672, "threadName": "MainThread" } ], - "msecs": 392.30799674987793, + "msecs": 22.69291877746582, "msg": "Initialising the state machine with state_c", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_init.py", - "process": 8622, + "pathname": "src/tests/test_init.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 27.250051498413086, - "thread": 140570112038720, + "relativeCreated": 51.863908767700195, + "thread": 139834866980672, "threadName": "MainThread", - "time_consumption": 4.696846008300781e-05 + "time_consumption": 8.893013000488281e-05 }, { "args": [ "'__init__'", "" ], - "asctime": "2019-12-27 08:39:27,392", - "created": 1577432367.392455, + "asctime": "2020-06-16 09:01:50,022", + "created": 1592290910.02287, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -7909,8 +8807,8 @@ "'__init__'", "" ], - "asctime": "2019-12-27 08:39:27,392", - "created": 1577432367.392373, + "asctime": "2020-06-16 09:01:50,022", + "created": 1592290910.02277, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -7920,14 +8818,14 @@ "lineno": 22, "message": "Result (Last transition condition after initialisation): '__init__' ()", "module": "test", - "msecs": 392.37308502197266, + "msecs": 22.769927978515625, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 27.315139770507812, - "thread": 140570112038720, + "relativeCreated": 51.94091796875, + "thread": 139834866980672, "threadName": "MainThread" }, { @@ -7936,8 +8834,8 @@ "'__init__'", "" ], - "asctime": "2019-12-27 08:39:27,392", - "created": 1577432367.392415, + "asctime": "2020-06-16 09:01:50,022", + "created": 1592290910.022823, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -7947,39 +8845,39 @@ "lineno": 26, "message": "Expectation (Last transition condition after initialisation): result = '__init__' ()", "module": "test", - "msecs": 392.41504669189453, + "msecs": 22.823095321655273, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 27.357101440429688, - "thread": 140570112038720, + "relativeCreated": 51.99408531188965, + "thread": 139834866980672, "threadName": "MainThread" } ], - "msecs": 392.4551010131836, + "msecs": 22.87006378173828, "msg": "Last transition condition after initialisation is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 27.39715576171875, - "thread": 140570112038720, + "relativeCreated": 52.041053771972656, + "thread": 139834866980672, "threadName": "MainThread", - "time_consumption": 4.00543212890625e-05 + "time_consumption": 4.696846008300781e-05 } ], - "thread": 140570112038720, + "thread": 139834866980672, "threadName": "MainThread", - "time_consumption": 0.0002651214599609375, - "time_finished": "2019-12-27 08:39:27,392", - "time_start": "2019-12-27 08:39:27,392" + "time_consumption": 0.00036597251892089844, + "time_finished": "2020-06-16 09:01:50,022", + "time_start": "2020-06-16 09:01:50,022" }, "_tRZ50HcyEemrUqotql_Blw": { "args": null, - "asctime": "2019-12-27 08:39:28,020", - "created": 1577432368.020105, + "asctime": "2020-06-16 09:01:50,659", + "created": 1592290910.659489, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -7990,18 +8888,18 @@ "message": "_tRZ50HcyEemrUqotql_Blw", "module": "__init__", "moduleLogger": [], - "msecs": 20.10488510131836, + "msecs": 659.4889163970947, "msg": "_tRZ50HcyEemrUqotql_Blw", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/__init__.py", - "process": 8622, + "pathname": "/user_data/data/dirk/prj/unittest/state_machine/unittest/src/tests/__init__.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 655.0469398498535, + "relativeCreated": 688.6599063873291, "testcaseLogger": [ { "args": [], - "asctime": "2019-12-27 08:39:28,020", - "created": 1577432368.020569, + "asctime": "2020-06-16 09:01:50,659", + "created": 1592290910.659903, "exc_info": null, "exc_text": null, "filename": "test_interface.py", @@ -8019,46 +8917,46 @@ "None", "'state_c'" ], - "asctime": "2019-12-27 08:39:28,020", - "created": 1577432368.020388, + "asctime": "2020-06-16 09:01:50,659", + "created": 1592290910.659748, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__set_state__", "levelname": "DEBUG", "levelno": 10, - "lineno": 174, + "lineno": 176, "message": "StateMachine: State change ('__init__'): None -> 'state_c'", "module": "__init__", - "msecs": 20.387887954711914, + "msecs": 659.7480773925781, "msg": "%s State change (%s): %s -> %s", "name": "STATE_MACHINE", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/state_machine/__init__.py", - "process": 8622, + "pathname": "src/state_machine/__init__.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 655.3299427032471, - "thread": 140570112038720, + "relativeCreated": 688.9190673828125, + "thread": 139834866980672, "threadName": "MainThread" } ], - "msecs": 20.5690860748291, + "msecs": 659.9030494689941, "msg": "Initialising the state machine with state_c", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_interface.py", - "process": 8622, + "pathname": "src/tests/test_interface.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 655.5111408233643, - "thread": 140570112038720, + "relativeCreated": 689.0740394592285, + "thread": 139834866980672, "threadName": "MainThread", - "time_consumption": 0.0001811981201171875 + "time_consumption": 0.00015497207641601562 }, { "args": [ "'state_c'", "" ], - "asctime": "2019-12-27 08:39:28,021", - "created": 1577432368.021106, + "asctime": "2020-06-16 09:01:50,660", + "created": 1592290910.660353, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8075,8 +8973,8 @@ "'state_c'", "" ], - "asctime": "2019-12-27 08:39:28,020", - "created": 1577432368.020805, + "asctime": "2020-06-16 09:01:50,660", + "created": 1592290910.66011, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8086,14 +8984,14 @@ "lineno": 22, "message": "Result (Returnvalue of this_state()): 'state_c' ()", "module": "test", - "msecs": 20.804882049560547, + "msecs": 660.1099967956543, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 655.7469367980957, - "thread": 140570112038720, + "relativeCreated": 689.2809867858887, + "thread": 139834866980672, "threadName": "MainThread" }, { @@ -8102,8 +9000,8 @@ "'state_c'", "" ], - "asctime": "2019-12-27 08:39:28,020", - "created": 1577432368.020957, + "asctime": "2020-06-16 09:01:50,660", + "created": 1592290910.660234, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8113,39 +9011,39 @@ "lineno": 26, "message": "Expectation (Returnvalue of this_state()): result = 'state_c' ()", "module": "test", - "msecs": 20.956993103027344, + "msecs": 660.2339744567871, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 655.8990478515625, - "thread": 140570112038720, + "relativeCreated": 689.4049644470215, + "thread": 139834866980672, "threadName": "MainThread" } ], - "msecs": 21.10600471496582, + "msecs": 660.3529453277588, "msg": "Returnvalue of this_state() is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 656.048059463501, - "thread": 140570112038720, + "relativeCreated": 689.5239353179932, + "thread": 139834866980672, "threadName": "MainThread", - "time_consumption": 0.00014901161193847656 + "time_consumption": 0.00011897087097167969 } ], - "thread": 140570112038720, + "thread": 139834866980672, "threadName": "MainThread", - "time_consumption": 0.001001119613647461, - "time_finished": "2019-12-27 08:39:28,021", - "time_start": "2019-12-27 08:39:28,020" + "time_consumption": 0.0008640289306640625, + "time_finished": "2020-06-16 09:01:50,660", + "time_start": "2020-06-16 09:01:50,659" }, "_vAtUQHcyEemrUqotql_Blw": { "args": null, - "asctime": "2019-12-27 08:39:28,021", - "created": 1577432368.021544, + "asctime": "2020-06-16 09:01:50,660", + "created": 1592290910.660682, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -8156,18 +9054,18 @@ "message": "_vAtUQHcyEemrUqotql_Blw", "module": "__init__", "moduleLogger": [], - "msecs": 21.54397964477539, + "msecs": 660.681962966919, "msg": "_vAtUQHcyEemrUqotql_Blw", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/__init__.py", - "process": 8622, + "pathname": "/user_data/data/dirk/prj/unittest/state_machine/unittest/src/tests/__init__.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 656.4860343933105, + "relativeCreated": 689.8529529571533, "testcaseLogger": [ { "args": [], - "asctime": "2019-12-27 08:39:28,021", - "created": 1577432368.021985, + "asctime": "2020-06-16 09:01:50,661", + "created": 1592290910.661039, "exc_info": null, "exc_text": null, "filename": "test_interface.py", @@ -8185,46 +9083,46 @@ "None", "'state_c'" ], - "asctime": "2019-12-27 08:39:28,021", - "created": 1577432368.021814, + "asctime": "2020-06-16 09:01:50,660", + "created": 1592290910.660898, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__set_state__", "levelname": "DEBUG", "levelno": 10, - "lineno": 174, + "lineno": 176, "message": "StateMachine: State change ('__init__'): None -> 'state_c'", "module": "__init__", - "msecs": 21.81410789489746, + "msecs": 660.897970199585, "msg": "%s State change (%s): %s -> %s", "name": "STATE_MACHINE", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/state_machine/__init__.py", - "process": 8622, + "pathname": "src/state_machine/__init__.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 656.7561626434326, - "thread": 140570112038720, + "relativeCreated": 690.0689601898193, + "thread": 139834866980672, "threadName": "MainThread" } ], - "msecs": 21.98505401611328, + "msecs": 661.0391139984131, "msg": "Initialising the state machine with state_c", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_interface.py", - "process": 8622, + "pathname": "src/tests/test_interface.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 656.9271087646484, - "thread": 140570112038720, + "relativeCreated": 690.2101039886475, + "thread": 139834866980672, "threadName": "MainThread", - "time_consumption": 0.0001709461212158203 + "time_consumption": 0.000141143798828125 }, { "args": [ "True", "" ], - "asctime": "2019-12-27 08:39:28,022", - "created": 1577432368.022539, + "asctime": "2020-06-16 09:01:50,661", + "created": 1592290910.661471, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8241,8 +9139,8 @@ "True", "" ], - "asctime": "2019-12-27 08:39:28,022", - "created": 1577432368.022214, + "asctime": "2020-06-16 09:01:50,661", + "created": 1592290910.661237, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8252,14 +9150,14 @@ "lineno": 22, "message": "Result (Returnvalue of this_state_is(state_c)): True ()", "module": "test", - "msecs": 22.21393585205078, + "msecs": 661.2370014190674, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 657.1559906005859, - "thread": 140570112038720, + "relativeCreated": 690.4079914093018, + "thread": 139834866980672, "threadName": "MainThread" }, { @@ -8268,8 +9166,8 @@ "True", "" ], - "asctime": "2019-12-27 08:39:28,022", - "created": 1577432368.022364, + "asctime": "2020-06-16 09:01:50,661", + "created": 1592290910.661354, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8279,35 +9177,35 @@ "lineno": 26, "message": "Expectation (Returnvalue of this_state_is(state_c)): result = True ()", "module": "test", - "msecs": 22.363901138305664, + "msecs": 661.3540649414062, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 657.3059558868408, - "thread": 140570112038720, + "relativeCreated": 690.5250549316406, + "thread": 139834866980672, "threadName": "MainThread" } ], - "msecs": 22.53890037536621, + "msecs": 661.470890045166, "msg": "Returnvalue of this_state_is(state_c) is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 657.4809551239014, - "thread": 140570112038720, + "relativeCreated": 690.6418800354004, + "thread": 139834866980672, "threadName": "MainThread", - "time_consumption": 0.00017499923706054688 + "time_consumption": 0.00011682510375976562 }, { "args": [ "False", "" ], - "asctime": "2019-12-27 08:39:28,023", - "created": 1577432368.023135, + "asctime": "2020-06-16 09:01:50,661", + "created": 1592290910.661905, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8324,8 +9222,8 @@ "False", "" ], - "asctime": "2019-12-27 08:39:28,022", - "created": 1577432368.022832, + "asctime": "2020-06-16 09:01:50,661", + "created": 1592290910.66167, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8335,14 +9233,14 @@ "lineno": 22, "message": "Result (Returnvalue of this_state_is(state_b)): False ()", "module": "test", - "msecs": 22.83191680908203, + "msecs": 661.6699695587158, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 657.7739715576172, - "thread": 140570112038720, + "relativeCreated": 690.8409595489502, + "thread": 139834866980672, "threadName": "MainThread" }, { @@ -8351,8 +9249,8 @@ "False", "" ], - "asctime": "2019-12-27 08:39:28,022", - "created": 1577432368.022976, + "asctime": "2020-06-16 09:01:50,661", + "created": 1592290910.661785, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8362,39 +9260,39 @@ "lineno": 26, "message": "Expectation (Returnvalue of this_state_is(state_b)): result = False ()", "module": "test", - "msecs": 22.975921630859375, + "msecs": 661.7848873138428, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 657.9179763793945, - "thread": 140570112038720, + "relativeCreated": 690.9558773040771, + "thread": 139834866980672, "threadName": "MainThread" } ], - "msecs": 23.134946823120117, + "msecs": 661.90505027771, "msg": "Returnvalue of this_state_is(state_b) is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 658.0770015716553, - "thread": 140570112038720, + "relativeCreated": 691.0760402679443, + "thread": 139834866980672, "threadName": "MainThread", - "time_consumption": 0.0001590251922607422 + "time_consumption": 0.0001201629638671875 } ], - "thread": 140570112038720, + "thread": 139834866980672, "threadName": "MainThread", - "time_consumption": 0.0015909671783447266, - "time_finished": "2019-12-27 08:39:28,023", - "time_start": "2019-12-27 08:39:28,021" + "time_consumption": 0.0012230873107910156, + "time_finished": "2020-06-16 09:01:50,661", + "time_start": "2020-06-16 09:01:50,660" }, "_w49d4HcHEem_Z9BBpwIuJw": { "args": null, - "asctime": "2019-12-27 08:39:27,391", - "created": 1577432367.391671, + "asctime": "2020-06-16 09:01:50,021", + "created": 1592290910.021986, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -8405,18 +9303,18 @@ "message": "_w49d4HcHEem_Z9BBpwIuJw", "module": "__init__", "moduleLogger": [], - "msecs": 391.67094230651855, + "msecs": 21.986007690429688, "msg": "_w49d4HcHEem_Z9BBpwIuJw", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/__init__.py", - "process": 8622, + "pathname": "/user_data/data/dirk/prj/unittest/state_machine/unittest/src/tests/__init__.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 26.61299705505371, + "relativeCreated": 51.15699768066406, "testcaseLogger": [ { "args": [], - "asctime": "2019-12-27 08:39:27,391", - "created": 1577432367.391918, + "asctime": "2020-06-16 09:01:50,022", + "created": 1592290910.022236, "exc_info": null, "exc_text": null, "filename": "test_init.py", @@ -8434,46 +9332,46 @@ "None", "'state_c'" ], - "asctime": "2019-12-27 08:39:27,391", - "created": 1577432367.391857, + "asctime": "2020-06-16 09:01:50,022", + "created": 1592290910.022178, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__set_state__", "levelname": "DEBUG", "levelno": 10, - "lineno": 174, + "lineno": 176, "message": "StateMachine: State change ('__init__'): None -> 'state_c'", "module": "__init__", - "msecs": 391.8569087982178, + "msecs": 22.177934646606445, "msg": "%s State change (%s): %s -> %s", "name": "STATE_MACHINE", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/state_machine/__init__.py", - "process": 8622, + "pathname": "src/state_machine/__init__.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 26.79896354675293, - "thread": 140570112038720, + "relativeCreated": 51.34892463684082, + "thread": 139834866980672, "threadName": "MainThread" } ], - "msecs": 391.9179439544678, + "msecs": 22.236108779907227, "msg": "Initialising the state machine with state_c", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_init.py", - "process": 8622, + "pathname": "src/tests/test_init.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 26.85999870300293, - "thread": 140570112038720, + "relativeCreated": 51.4070987701416, + "thread": 139834866980672, "threadName": "MainThread", - "time_consumption": 6.103515625e-05 + "time_consumption": 5.817413330078125e-05 }, { "args": [ "'state_c'", "" ], - "asctime": "2019-12-27 08:39:27,392", - "created": 1577432367.392083, + "asctime": "2020-06-16 09:01:50,022", + "created": 1592290910.022391, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8490,8 +9388,8 @@ "'state_c'", "" ], - "asctime": "2019-12-27 08:39:27,391", - "created": 1577432367.391991, + "asctime": "2020-06-16 09:01:50,022", + "created": 1592290910.022307, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8501,14 +9399,14 @@ "lineno": 22, "message": "Result (State after initialisation): 'state_c' ()", "module": "test", - "msecs": 391.99090003967285, + "msecs": 22.30691909790039, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 26.932954788208008, - "thread": 140570112038720, + "relativeCreated": 51.477909088134766, + "thread": 139834866980672, "threadName": "MainThread" }, { @@ -8517,8 +9415,8 @@ "'state_c'", "" ], - "asctime": "2019-12-27 08:39:27,392", - "created": 1577432367.392037, + "asctime": "2020-06-16 09:01:50,022", + "created": 1592290910.02235, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8528,39 +9426,39 @@ "lineno": 26, "message": "Expectation (State after initialisation): result = 'state_c' ()", "module": "test", - "msecs": 392.03691482543945, + "msecs": 22.350072860717773, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 26.97896957397461, - "thread": 140570112038720, + "relativeCreated": 51.52106285095215, + "thread": 139834866980672, "threadName": "MainThread" } ], - "msecs": 392.08292961120605, + "msecs": 22.391080856323242, "msg": "State after initialisation is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 27.02498435974121, - "thread": 140570112038720, + "relativeCreated": 51.56207084655762, + "thread": 139834866980672, "threadName": "MainThread", - "time_consumption": 4.601478576660156e-05 + "time_consumption": 4.100799560546875e-05 } ], - "thread": 140570112038720, + "thread": 139834866980672, "threadName": "MainThread", - "time_consumption": 0.0004119873046875, - "time_finished": "2019-12-27 08:39:27,392", - "time_start": "2019-12-27 08:39:27,391" + "time_consumption": 0.0004050731658935547, + "time_finished": "2020-06-16 09:01:50,022", + "time_start": "2020-06-16 09:01:50,021" }, "_yVA9oHcyEemrUqotql_Blw": { "args": null, - "asctime": "2019-12-27 08:39:28,023", - "created": 1577432368.023519, + "asctime": "2020-06-16 09:01:50,662", + "created": 1592290910.66223, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -8571,18 +9469,18 @@ "message": "_yVA9oHcyEemrUqotql_Blw", "module": "__init__", "moduleLogger": [], - "msecs": 23.519039154052734, + "msecs": 662.2300148010254, "msg": "_yVA9oHcyEemrUqotql_Blw", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/__init__.py", - "process": 8622, + "pathname": "/user_data/data/dirk/prj/unittest/state_machine/unittest/src/tests/__init__.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 658.4610939025879, + "relativeCreated": 691.4010047912598, "testcaseLogger": [ { "args": [], - "asctime": "2019-12-27 08:39:28,274", - "created": 1577432368.274946, + "asctime": "2020-06-16 09:01:50,913", + "created": 1592290910.913257, "exc_info": null, "exc_text": null, "filename": "test_interface.py", @@ -8600,25 +9498,25 @@ "None", "'state_a'" ], - "asctime": "2019-12-27 08:39:28,023", - "created": 1577432368.023783, + "asctime": "2020-06-16 09:01:50,662", + "created": 1592290910.662448, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__set_state__", "levelname": "DEBUG", "levelno": 10, - "lineno": 174, + "lineno": 176, "message": "StateMachine: State change ('__init__'): None -> 'state_a'", "module": "__init__", - "msecs": 23.782968521118164, + "msecs": 662.4479293823242, "msg": "%s State change (%s): %s -> %s", "name": "STATE_MACHINE", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/state_machine/__init__.py", - "process": 8622, + "pathname": "src/state_machine/__init__.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 658.7250232696533, - "thread": 140570112038720, + "relativeCreated": 691.6189193725586, + "thread": 139834866980672, "threadName": "MainThread" }, { @@ -8628,33 +9526,33 @@ "'state_a'", "'state_b'" ], - "asctime": "2019-12-27 08:39:28,024", - "created": 1577432368.024052, + "asctime": "2020-06-16 09:01:50,662", + "created": 1592290910.662657, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__set_state__", "levelname": "DEBUG", "levelno": 10, - "lineno": 174, + "lineno": 176, "message": "StateMachine: State change ('condition_a'): 'state_a' -> 'state_b'", "module": "__init__", - "msecs": 24.051904678344727, + "msecs": 662.6570224761963, "msg": "%s State change (%s): %s -> %s", "name": "STATE_MACHINE", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/state_machine/__init__.py", - "process": 8622, + "pathname": "src/state_machine/__init__.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 658.9939594268799, - "thread": 140570112038720, + "relativeCreated": 691.8280124664307, + "thread": 139834866980672, "threadName": "MainThread" }, { "args": [ 0.25 ], - "asctime": "2019-12-27 08:39:28,274", - "created": 1577432368.274591, + "asctime": "2020-06-16 09:01:50,913", + "created": 1592290910.91307, "exc_info": null, "exc_text": null, "filename": "test_interface.py", @@ -8664,37 +9562,37 @@ "lineno": 33, "message": "Waiting for 0.25s", "module": "test_interface", - "msecs": 274.59096908569336, + "msecs": 913.0699634552002, "msg": "Waiting for %.2fs", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_interface.py", - "process": 8622, + "pathname": "src/tests/test_interface.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 909.5330238342285, - "thread": 140570112038720, + "relativeCreated": 942.2409534454346, + "thread": 139834866980672, "threadName": "MainThread" } ], - "msecs": 274.9459743499756, + "msecs": 913.2568836212158, "msg": "Running state machine test sequence.", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_interface.py", - "process": 8622, + "pathname": "src/tests/test_interface.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 909.8880290985107, - "thread": 140570112038720, + "relativeCreated": 942.4278736114502, + "thread": 139834866980672, "threadName": "MainThread", - "time_consumption": 0.00035500526428222656 + "time_consumption": 0.000186920166015625 }, { "args": [ - "0.2510838508605957", + "0.2509438991546631", "0.2", "0.3", "" ], - "asctime": "2019-12-27 08:39:28,275", - "created": 1577432368.27571, + "asctime": "2020-06-16 09:01:50,913", + "created": 1592290910.913876, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8702,17 +9600,17 @@ "levelname": "INFO", "levelno": 20, "lineno": 218, - "message": "Return Value of this_state_duration() is correct (Content 0.2510838508605957 in [0.2 ... 0.3] and Type is ).", + "message": "Return Value of this_state_duration() is correct (Content 0.2509438991546631 in [0.2 ... 0.3] and Type is ).", "module": "test", "moduleLogger": [ { "args": [ "Return Value of this_state_duration()", - "0.2510838508605957", + "0.2509438991546631", "" ], - "asctime": "2019-12-27 08:39:28,275", - "created": 1577432368.275321, + "asctime": "2020-06-16 09:01:50,913", + "created": 1592290910.913692, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8720,16 +9618,16 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 22, - "message": "Result (Return Value of this_state_duration()): 0.2510838508605957 ()", + "message": "Result (Return Value of this_state_duration()): 0.2509438991546631 ()", "module": "test", - "msecs": 275.32100677490234, + "msecs": 913.6919975280762, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 910.2630615234375, - "thread": 140570112038720, + "relativeCreated": 942.8629875183105, + "thread": 139834866980672, "threadName": "MainThread" }, { @@ -8738,8 +9636,8 @@ "0.2", "0.3" ], - "asctime": "2019-12-27 08:39:28,275", - "created": 1577432368.275517, + "asctime": "2020-06-16 09:01:50,913", + "created": 1592290910.913789, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8749,38 +9647,38 @@ "lineno": 30, "message": "Expectation (Return Value of this_state_duration()): 0.2 <= result <= 0.3", "module": "test", - "msecs": 275.5169868469238, + "msecs": 913.7890338897705, "msg": "Expectation (%s): %s <= result <= %s", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 910.459041595459, - "thread": 140570112038720, + "relativeCreated": 942.9600238800049, + "thread": 139834866980672, "threadName": "MainThread" } ], - "msecs": 275.7101058959961, + "msecs": 913.8760566711426, "msg": "Return Value of this_state_duration() is correct (Content %s in [%s ... %s] and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8622, + "pathname": "src/unittest/test.py", + "process": 11803, "processName": "MainProcess", - "relativeCreated": 910.6521606445312, - "thread": 140570112038720, + "relativeCreated": 943.047046661377, + "thread": 139834866980672, "threadName": "MainThread", - "time_consumption": 0.00019311904907226562 + "time_consumption": 8.702278137207031e-05 } ], - "thread": 140570112038720, + "thread": 139834866980672, "threadName": "MainThread", - "time_consumption": 0.25219106674194336, - "time_finished": "2019-12-27 08:39:28,275", - "time_start": "2019-12-27 08:39:28,023" + "time_consumption": 0.2516460418701172, + "time_finished": "2020-06-16 09:01:50,913", + "time_start": "2020-06-16 09:01:50,662" } }, "testrun_id": "p2", - "time_consumption": 1.6532673835754395, + "time_consumption": 1.6574313640594482, "uid_list_sorted": [ "_w49d4HcHEem_Z9BBpwIuJw", "_j2FvkHcqEemrUqotql_Blw", @@ -8800,7 +9698,8 @@ "_XzMFcHYZEem_kd-7nxt1sg", "_YrdgQHbUEemIm_1APUisDQ", "_b_t78Hb4EemzkK7kGUMNfw", - "_e4QPUHb4EemzkK7kGUMNfw" + "_e4QPUHb4EemzkK7kGUMNfw", + "_QofFgK-aEeqZm7ouFR1drQ" ] }, { @@ -8815,6 +9714,7 @@ "_MR7eOHYYEem_kd-7nxt1sg": "Transition Callbacks", "_N_VvoHczEemrUqotql_Blw": "Transition Changes", "_P7R34HczEemrUqotql_Blw": "Transitiondefinition and -flow", + "_QofFgK-aEeqZm7ouFR1drQ": "Execution order of Callbacks", "_RnPZgHcqEemrUqotql_Blw": "Module Interface", "_XzMFcHYZEem_kd-7nxt1sg": "State change callback for a defined transition and targetstate", "_YrdgQHbUEemIm_1APUisDQ": "State change callback for a defined transition", @@ -8833,8 +9733,8 @@ "name": "Default Testsession name", "number_of_failed_tests": 0, "number_of_possibly_failed_tests": 0, - "number_of_successfull_tests": 19, - "number_of_tests": 19, + "number_of_successfull_tests": 20, + "number_of_tests": 20, "testcase_execution_level": 90, "testcase_names": { "0": "Single Test", @@ -8845,8 +9745,8 @@ "testcases": { "_-kytMHcyEemrUqotql_Blw": { "args": null, - "asctime": "2019-12-27 08:39:30,313", - "created": 1577432370.3136415, + "asctime": "2020-06-16 09:01:52,944", + "created": 1592290912.9441173, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -8857,19 +9757,19 @@ "message": "_-kytMHcyEemrUqotql_Blw", "module": "__init__", "moduleLogger": [], - "msecs": 313.6415481567383, + "msecs": 944.1173076629639, "msg": "_-kytMHcyEemrUqotql_Blw", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/__init__.py", - "process": 8624, + "pathname": "/user_data/data/dirk/prj/unittest/state_machine/unittest/src/tests/__init__.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 947.6540088653564, + "relativeCreated": 935.0712299346924, "stack_info": null, "testcaseLogger": [ { "args": [], - "asctime": "2019-12-27 08:39:30,314", - "created": 1577432370.3146026, + "asctime": "2020-06-16 09:01:52,944", + "created": 1592290912.9443033, "exc_info": null, "exc_text": null, "filename": "test_interface.py", @@ -8887,26 +9787,26 @@ "None", "'state_a'" ], - "asctime": "2019-12-27 08:39:30,314", - "created": 1577432370.3140066, + "asctime": "2020-06-16 09:01:52,944", + "created": 1592290912.9441826, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__set_state__", "levelname": "DEBUG", "levelno": 10, - "lineno": 174, + "lineno": 176, "message": "StateMachine: State change ('__init__'): None -> 'state_a'", "module": "__init__", - "msecs": 314.0065670013428, + "msecs": 944.1826343536377, "msg": "%s State change (%s): %s -> %s", "name": "STATE_MACHINE", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/state_machine/__init__.py", - "process": 8624, + "pathname": "src/state_machine/__init__.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 948.0190277099609, + "relativeCreated": 935.1365566253662, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { @@ -8916,48 +9816,48 @@ "'state_a'", "'state_b'" ], - "asctime": "2019-12-27 08:39:30,314", - "created": 1577432370.314399, + "asctime": "2020-06-16 09:01:52,944", + "created": 1592290912.9442503, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__set_state__", "levelname": "DEBUG", "levelno": 10, - "lineno": 174, + "lineno": 176, "message": "StateMachine: State change ('condition_a'): 'state_a' -> 'state_b'", "module": "__init__", - "msecs": 314.39900398254395, + "msecs": 944.2503452301025, "msg": "%s State change (%s): %s -> %s", "name": "STATE_MACHINE", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/state_machine/__init__.py", - "process": 8624, + "pathname": "src/state_machine/__init__.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 948.4114646911621, + "relativeCreated": 935.204267501831, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" } ], - "msecs": 314.6026134490967, + "msecs": 944.3032741546631, "msg": "Running state machine test sequence.", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_interface.py", - "process": 8624, + "pathname": "src/tests/test_interface.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 948.6150741577148, + "relativeCreated": 935.2571964263916, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread", - "time_consumption": 0.00020360946655273438 + "time_consumption": 5.2928924560546875e-05 }, { "args": [ "'state_a'", "" ], - "asctime": "2019-12-27 08:39:30,315", - "created": 1577432370.3150625, + "asctime": "2020-06-16 09:01:52,944", + "created": 1592290912.9444444, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8974,8 +9874,8 @@ "'state_a'", "" ], - "asctime": "2019-12-27 08:39:30,314", - "created": 1577432370.314794, + "asctime": "2020-06-16 09:01:52,944", + "created": 1592290912.944362, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8985,15 +9885,15 @@ "lineno": 22, "message": "Result (Returnvalue of previous_state()): 'state_a' ()", "module": "test", - "msecs": 314.79406356811523, + "msecs": 944.3619251251221, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 948.8065242767334, + "relativeCreated": 935.3158473968506, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { @@ -9002,8 +9902,8 @@ "'state_a'", "" ], - "asctime": "2019-12-27 08:39:30,314", - "created": 1577432370.3149292, + "asctime": "2020-06-16 09:01:52,944", + "created": 1592290912.944403, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -9013,41 +9913,41 @@ "lineno": 26, "message": "Expectation (Returnvalue of previous_state()): result = 'state_a' ()", "module": "test", - "msecs": 314.9292469024658, + "msecs": 944.4029331207275, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 948.941707611084, + "relativeCreated": 935.356855392456, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" } ], - "msecs": 315.0625228881836, + "msecs": 944.4444179534912, "msg": "Returnvalue of previous_state() is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 949.0749835968018, + "relativeCreated": 935.3983402252197, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread", - "time_consumption": 0.00013327598571777344 + "time_consumption": 4.1484832763671875e-05 } ], - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread", - "time_consumption": 0.0014209747314453125, - "time_finished": "2019-12-27 08:39:30,315", - "time_start": "2019-12-27 08:39:30,313" + "time_consumption": 0.00032711029052734375, + "time_finished": "2020-06-16 09:01:52,944", + "time_start": "2020-06-16 09:01:52,944" }, "_1WGwEHcyEemrUqotql_Blw": { "args": null, - "asctime": "2019-12-27 08:39:30,310", - "created": 1577432370.3104317, + "asctime": "2020-06-16 09:01:52,943", + "created": 1592290912.94309, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -9058,19 +9958,19 @@ "message": "_1WGwEHcyEemrUqotql_Blw", "module": "__init__", "moduleLogger": [], - "msecs": 310.43171882629395, + "msecs": 943.0899620056152, "msg": "_1WGwEHcyEemrUqotql_Blw", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/__init__.py", - "process": 8624, + "pathname": "/user_data/data/dirk/prj/unittest/state_machine/unittest/src/tests/__init__.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 944.4441795349121, + "relativeCreated": 934.0438842773438, "stack_info": null, "testcaseLogger": [ { "args": [], - "asctime": "2019-12-27 08:39:30,311", - "created": 1577432370.311048, + "asctime": "2020-06-16 09:01:52,943", + "created": 1592290912.943299, "exc_info": null, "exc_text": null, "filename": "test_interface.py", @@ -9088,26 +9988,26 @@ "None", "'state_a'" ], - "asctime": "2019-12-27 08:39:30,310", - "created": 1577432370.3106396, + "asctime": "2020-06-16 09:01:52,943", + "created": 1592290912.943167, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__set_state__", "levelname": "DEBUG", "levelno": 10, - "lineno": 174, + "lineno": 176, "message": "StateMachine: State change ('__init__'): None -> 'state_a'", "module": "__init__", - "msecs": 310.6396198272705, + "msecs": 943.166971206665, "msg": "%s State change (%s): %s -> %s", "name": "STATE_MACHINE", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/state_machine/__init__.py", - "process": 8624, + "pathname": "src/state_machine/__init__.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 944.6520805358887, + "relativeCreated": 934.1208934783936, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { @@ -9117,48 +10017,48 @@ "'state_a'", "'state_b'" ], - "asctime": "2019-12-27 08:39:30,310", - "created": 1577432370.3108752, + "asctime": "2020-06-16 09:01:52,943", + "created": 1592290912.943248, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__set_state__", "levelname": "DEBUG", "levelno": 10, - "lineno": 174, + "lineno": 176, "message": "StateMachine: State change ('condition_a'): 'state_a' -> 'state_b'", "module": "__init__", - "msecs": 310.87517738342285, + "msecs": 943.2480335235596, "msg": "%s State change (%s): %s -> %s", "name": "STATE_MACHINE", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/state_machine/__init__.py", - "process": 8624, + "pathname": "src/state_machine/__init__.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 944.887638092041, + "relativeCreated": 934.2019557952881, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" } ], - "msecs": 311.0480308532715, + "msecs": 943.2990550994873, "msg": "Running state machine test sequence.", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_interface.py", - "process": 8624, + "pathname": "src/tests/test_interface.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 945.0604915618896, + "relativeCreated": 934.2529773712158, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread", - "time_consumption": 0.0001728534698486328 + "time_consumption": 5.1021575927734375e-05 }, { "args": [ "'condition_a'", "" ], - "asctime": "2019-12-27 08:39:30,311", - "created": 1577432370.3115034, + "asctime": "2020-06-16 09:01:52,943", + "created": 1592290912.9434645, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -9175,8 +10075,8 @@ "'condition_a'", "" ], - "asctime": "2019-12-27 08:39:30,311", - "created": 1577432370.3112295, + "asctime": "2020-06-16 09:01:52,943", + "created": 1592290912.9433637, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -9186,15 +10086,15 @@ "lineno": 22, "message": "Result (Returnvalue of last_transition_condition()): 'condition_a' ()", "module": "test", - "msecs": 311.2294673919678, + "msecs": 943.3636665344238, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 945.2419281005859, + "relativeCreated": 934.3175888061523, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { @@ -9203,8 +10103,8 @@ "'condition_a'", "" ], - "asctime": "2019-12-27 08:39:30,311", - "created": 1577432370.3113713, + "asctime": "2020-06-16 09:01:52,943", + "created": 1592290912.9434106, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -9214,41 +10114,41 @@ "lineno": 26, "message": "Expectation (Returnvalue of last_transition_condition()): result = 'condition_a' ()", "module": "test", - "msecs": 311.3713264465332, + "msecs": 943.4106349945068, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 945.3837871551514, + "relativeCreated": 934.3645572662354, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" } ], - "msecs": 311.50341033935547, + "msecs": 943.4645175933838, "msg": "Returnvalue of last_transition_condition() is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 945.5158710479736, + "relativeCreated": 934.4184398651123, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread", - "time_consumption": 0.00013208389282226562 + "time_consumption": 5.3882598876953125e-05 } ], - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread", - "time_consumption": 0.0010716915130615234, - "time_finished": "2019-12-27 08:39:30,311", - "time_start": "2019-12-27 08:39:30,310" + "time_consumption": 0.0003745555877685547, + "time_finished": "2020-06-16 09:01:52,943", + "time_start": "2020-06-16 09:01:52,943" }, "_7Mq60HcyEemrUqotql_Blw": { "args": null, - "asctime": "2019-12-27 08:39:30,311", - "created": 1577432370.311778, + "asctime": "2020-06-16 09:01:52,943", + "created": 1592290912.943558, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -9259,19 +10159,19 @@ "message": "_7Mq60HcyEemrUqotql_Blw", "module": "__init__", "moduleLogger": [], - "msecs": 311.77806854248047, + "msecs": 943.5579776763916, "msg": "_7Mq60HcyEemrUqotql_Blw", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/__init__.py", - "process": 8624, + "pathname": "/user_data/data/dirk/prj/unittest/state_machine/unittest/src/tests/__init__.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 945.7905292510986, + "relativeCreated": 934.5118999481201, "stack_info": null, "testcaseLogger": [ { "args": [], - "asctime": "2019-12-27 08:39:30,312", - "created": 1577432370.3123403, + "asctime": "2020-06-16 09:01:52,943", + "created": 1592290912.94374, "exc_info": null, "exc_text": null, "filename": "test_interface.py", @@ -9289,26 +10189,26 @@ "None", "'state_a'" ], - "asctime": "2019-12-27 08:39:30,311", - "created": 1577432370.3119798, + "asctime": "2020-06-16 09:01:52,943", + "created": 1592290912.943624, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__set_state__", "levelname": "DEBUG", "levelno": 10, - "lineno": 174, + "lineno": 176, "message": "StateMachine: State change ('__init__'): None -> 'state_a'", "module": "__init__", - "msecs": 311.9797706604004, + "msecs": 943.6240196228027, "msg": "%s State change (%s): %s -> %s", "name": "STATE_MACHINE", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/state_machine/__init__.py", - "process": 8624, + "pathname": "src/state_machine/__init__.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 945.9922313690186, + "relativeCreated": 934.5779418945312, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { @@ -9318,48 +10218,48 @@ "'state_a'", "'state_b'" ], - "asctime": "2019-12-27 08:39:30,312", - "created": 1577432370.3121927, + "asctime": "2020-06-16 09:01:52,943", + "created": 1592290912.943692, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__set_state__", "levelname": "DEBUG", "levelno": 10, - "lineno": 174, + "lineno": 176, "message": "StateMachine: State change ('condition_a'): 'state_a' -> 'state_b'", "module": "__init__", - "msecs": 312.1926784515381, + "msecs": 943.6919689178467, "msg": "%s State change (%s): %s -> %s", "name": "STATE_MACHINE", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/state_machine/__init__.py", - "process": 8624, + "pathname": "src/state_machine/__init__.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 946.2051391601562, + "relativeCreated": 934.6458911895752, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" } ], - "msecs": 312.34025955200195, + "msecs": 943.7398910522461, "msg": "Running state machine test sequence.", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_interface.py", - "process": 8624, + "pathname": "src/tests/test_interface.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 946.3527202606201, + "relativeCreated": 934.6938133239746, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread", - "time_consumption": 0.0001475811004638672 + "time_consumption": 4.792213439941406e-05 }, { "args": [ "True", "" ], - "asctime": "2019-12-27 08:39:30,312", - "created": 1577432370.3127732, + "asctime": "2020-06-16 09:01:52,943", + "created": 1592290912.9438806, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -9376,8 +10276,8 @@ "True", "" ], - "asctime": "2019-12-27 08:39:30,312", - "created": 1577432370.3125148, + "asctime": "2020-06-16 09:01:52,943", + "created": 1592290912.943799, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -9387,15 +10287,15 @@ "lineno": 22, "message": "Result (Returnvalue of last_transition_condition(condition_a)): True ()", "module": "test", - "msecs": 312.5147819519043, + "msecs": 943.7990188598633, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 946.5272426605225, + "relativeCreated": 934.7529411315918, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { @@ -9404,8 +10304,8 @@ "True", "" ], - "asctime": "2019-12-27 08:39:30,312", - "created": 1577432370.3126442, + "asctime": "2020-06-16 09:01:52,943", + "created": 1592290912.94384, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -9415,37 +10315,37 @@ "lineno": 26, "message": "Expectation (Returnvalue of last_transition_condition(condition_a)): result = True ()", "module": "test", - "msecs": 312.64424324035645, + "msecs": 943.8400268554688, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 946.6567039489746, + "relativeCreated": 934.7939491271973, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" } ], - "msecs": 312.7732276916504, + "msecs": 943.880558013916, "msg": "Returnvalue of last_transition_condition(condition_a) is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 946.7856884002686, + "relativeCreated": 934.8344802856445, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread", - "time_consumption": 0.0001289844512939453 + "time_consumption": 4.0531158447265625e-05 }, { "args": [ "False", "" ], - "asctime": "2019-12-27 08:39:30,313", - "created": 1577432370.313216, + "asctime": "2020-06-16 09:01:52,944", + "created": 1592290912.9440203, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -9462,8 +10362,8 @@ "False", "" ], - "asctime": "2019-12-27 08:39:30,312", - "created": 1577432370.3129528, + "asctime": "2020-06-16 09:01:52,943", + "created": 1592290912.9439385, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -9473,15 +10373,15 @@ "lineno": 22, "message": "Result (Returnvalue of last_transition_condition(condition_c)): False ()", "module": "test", - "msecs": 312.95275688171387, + "msecs": 943.9384937286377, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 946.965217590332, + "relativeCreated": 934.8924160003662, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { @@ -9490,8 +10390,8 @@ "False", "" ], - "asctime": "2019-12-27 08:39:30,313", - "created": 1577432370.3130782, + "asctime": "2020-06-16 09:01:52,943", + "created": 1592290912.9439774, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -9501,41 +10401,41 @@ "lineno": 26, "message": "Expectation (Returnvalue of last_transition_condition(condition_c)): result = False ()", "module": "test", - "msecs": 313.0781650543213, + "msecs": 943.9773559570312, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 947.0906257629395, + "relativeCreated": 934.9312782287598, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" } ], - "msecs": 313.215970993042, + "msecs": 944.0202713012695, "msg": "Returnvalue of last_transition_condition(condition_c) is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 947.2284317016602, + "relativeCreated": 934.974193572998, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread", - "time_consumption": 0.00013780593872070312 + "time_consumption": 4.291534423828125e-05 } ], - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread", - "time_consumption": 0.0014379024505615234, - "time_finished": "2019-12-27 08:39:30,313", - "time_start": "2019-12-27 08:39:30,311" + "time_consumption": 0.0004622936248779297, + "time_finished": "2020-06-16 09:01:52,944", + "time_start": "2020-06-16 09:01:52,943" }, "_AcYg8HczEemrUqotql_Blw": { "args": null, - "asctime": "2019-12-27 08:39:30,315", - "created": 1577432370.3153374, + "asctime": "2020-06-16 09:01:52,944", + "created": 1592290912.9445398, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -9546,19 +10446,19 @@ "message": "_AcYg8HczEemrUqotql_Blw", "module": "__init__", "moduleLogger": [], - "msecs": 315.3374195098877, + "msecs": 944.5397853851318, "msg": "_AcYg8HczEemrUqotql_Blw", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/__init__.py", - "process": 8624, + "pathname": "/user_data/data/dirk/prj/unittest/state_machine/unittest/src/tests/__init__.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 949.3498802185059, + "relativeCreated": 935.4937076568604, "stack_info": null, "testcaseLogger": [ { "args": [], - "asctime": "2019-12-27 08:39:30,315", - "created": 1577432370.3159027, + "asctime": "2020-06-16 09:01:52,944", + "created": 1592290912.9446964, "exc_info": null, "exc_text": null, "filename": "test_interface.py", @@ -9576,26 +10476,26 @@ "None", "'state_a'" ], - "asctime": "2019-12-27 08:39:30,315", - "created": 1577432370.315546, + "asctime": "2020-06-16 09:01:52,944", + "created": 1592290912.9445982, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__set_state__", "levelname": "DEBUG", "levelno": 10, - "lineno": 174, + "lineno": 176, "message": "StateMachine: State change ('__init__'): None -> 'state_a'", "module": "__init__", - "msecs": 315.54603576660156, + "msecs": 944.5981979370117, "msg": "%s State change (%s): %s -> %s", "name": "STATE_MACHINE", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/state_machine/__init__.py", - "process": 8624, + "pathname": "src/state_machine/__init__.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 949.5584964752197, + "relativeCreated": 935.5521202087402, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { @@ -9605,48 +10505,48 @@ "'state_a'", "'state_b'" ], - "asctime": "2019-12-27 08:39:30,315", - "created": 1577432370.315759, + "asctime": "2020-06-16 09:01:52,944", + "created": 1592290912.9446554, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__set_state__", "levelname": "DEBUG", "levelno": 10, - "lineno": 174, + "lineno": 176, "message": "StateMachine: State change ('condition_a'): 'state_a' -> 'state_b'", "module": "__init__", - "msecs": 315.75894355773926, + "msecs": 944.6554183959961, "msg": "%s State change (%s): %s -> %s", "name": "STATE_MACHINE", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/state_machine/__init__.py", - "process": 8624, + "pathname": "src/state_machine/__init__.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 949.7714042663574, + "relativeCreated": 935.6093406677246, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" } ], - "msecs": 315.9027099609375, + "msecs": 944.6964263916016, "msg": "Running state machine test sequence.", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_interface.py", - "process": 8624, + "pathname": "src/tests/test_interface.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 949.9151706695557, + "relativeCreated": 935.6503486633301, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread", - "time_consumption": 0.0001437664031982422 + "time_consumption": 4.100799560546875e-05 }, { "args": [ "True", "" ], - "asctime": "2019-12-27 08:39:30,316", - "created": 1577432370.3163733, + "asctime": "2020-06-16 09:01:52,944", + "created": 1592290912.9448159, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -9663,8 +10563,8 @@ "True", "" ], - "asctime": "2019-12-27 08:39:30,316", - "created": 1577432370.3160865, + "asctime": "2020-06-16 09:01:52,944", + "created": 1592290912.9447467, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -9674,15 +10574,15 @@ "lineno": 22, "message": "Result (Returnvalue of previous_state_was(state_a)): True ()", "module": "test", - "msecs": 316.0865306854248, + "msecs": 944.746732711792, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 950.098991394043, + "relativeCreated": 935.7006549835205, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { @@ -9691,8 +10591,8 @@ "True", "" ], - "asctime": "2019-12-27 08:39:30,316", - "created": 1577432370.3162358, + "asctime": "2020-06-16 09:01:52,944", + "created": 1592290912.9447815, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -9702,37 +10602,37 @@ "lineno": 26, "message": "Expectation (Returnvalue of previous_state_was(state_a)): result = True ()", "module": "test", - "msecs": 316.2357807159424, + "msecs": 944.7815418243408, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 950.2482414245605, + "relativeCreated": 935.7354640960693, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" } ], - "msecs": 316.373348236084, + "msecs": 944.8158740997314, "msg": "Returnvalue of previous_state_was(state_a) is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 950.3858089447021, + "relativeCreated": 935.76979637146, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread", - "time_consumption": 0.00013756752014160156 + "time_consumption": 3.4332275390625e-05 }, { "args": [ "False", "" ], - "asctime": "2019-12-27 08:39:30,316", - "created": 1577432370.316803, + "asctime": "2020-06-16 09:01:52,944", + "created": 1592290912.9449334, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -9749,8 +10649,8 @@ "False", "" ], - "asctime": "2019-12-27 08:39:30,316", - "created": 1577432370.3165455, + "asctime": "2020-06-16 09:01:52,944", + "created": 1592290912.9448638, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -9760,15 +10660,15 @@ "lineno": 22, "message": "Result (Returnvalue of previous_state_was(state_b)): False ()", "module": "test", - "msecs": 316.5454864501953, + "msecs": 944.8637962341309, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 950.5579471588135, + "relativeCreated": 935.8177185058594, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { @@ -9777,8 +10677,8 @@ "False", "" ], - "asctime": "2019-12-27 08:39:30,316", - "created": 1577432370.3166702, + "asctime": "2020-06-16 09:01:52,944", + "created": 1592290912.9448972, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -9788,41 +10688,41 @@ "lineno": 26, "message": "Expectation (Returnvalue of previous_state_was(state_b)): result = False ()", "module": "test", - "msecs": 316.67017936706543, + "msecs": 944.8971748352051, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 950.6826400756836, + "relativeCreated": 935.8510971069336, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" } ], - "msecs": 316.802978515625, + "msecs": 944.9334144592285, "msg": "Returnvalue of previous_state_was(state_b) is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 950.8154392242432, + "relativeCreated": 935.887336730957, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread", - "time_consumption": 0.0001327991485595703 + "time_consumption": 3.62396240234375e-05 } ], - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread", - "time_consumption": 0.0014655590057373047, - "time_finished": "2019-12-27 08:39:30,316", - "time_start": "2019-12-27 08:39:30,315" + "time_consumption": 0.0003936290740966797, + "time_finished": "2020-06-16 09:01:52,944", + "time_start": "2020-06-16 09:01:52,944" }, "_C0Vi0HgPEemBsuKWG645TA": { "args": null, - "asctime": "2019-12-27 08:39:29,811", - "created": 1577432369.8114681, + "asctime": "2020-06-16 09:01:52,447", + "created": 1592290912.4477644, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -9833,13 +10733,13 @@ "message": "_C0Vi0HgPEemBsuKWG645TA", "module": "__init__", "moduleLogger": [], - "msecs": 811.4681243896484, + "msecs": 447.76439666748047, "msg": "_C0Vi0HgPEemBsuKWG645TA", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/__init__.py", - "process": 8624, + "pathname": "/user_data/data/dirk/prj/unittest/state_machine/unittest/src/tests/__init__.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 445.4805850982666, + "relativeCreated": 438.718318939209, "stack_info": null, "testcaseLogger": [ { @@ -9847,8 +10747,8 @@ 0.151, 0.15 ], - "asctime": "2019-12-27 08:39:29,811", - "created": 1577432369.8119576, + "asctime": "2020-06-16 09:01:52,448", + "created": 1592290912.4480243, "exc_info": null, "exc_text": null, "filename": "test_transitions.py", @@ -9866,48 +10766,48 @@ "None", "'state_a'" ], - "asctime": "2019-12-27 08:39:29,811", - "created": 1577432369.8117712, + "asctime": "2020-06-16 09:01:52,447", + "created": 1592290912.447927, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__set_state__", "levelname": "DEBUG", "levelno": 10, - "lineno": 174, + "lineno": 176, "message": "StateMachine: State change ('__init__'): None -> 'state_a'", "module": "__init__", - "msecs": 811.7711544036865, + "msecs": 447.92699813842773, "msg": "%s State change (%s): %s -> %s", "name": "STATE_MACHINE", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/state_machine/__init__.py", - "process": 8624, + "pathname": "src/state_machine/__init__.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 445.7836151123047, + "relativeCreated": 438.88092041015625, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" } ], - "msecs": 811.957597732544, + "msecs": 448.0242729187012, "msg": "Initialising state machine with state_a, a transition to state_b after %.03fs and a transition to state_c after %.03fs", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_transitions.py", - "process": 8624, + "pathname": "src/tests/test_transitions.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 445.9700584411621, + "relativeCreated": 438.9781951904297, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread", - "time_consumption": 0.00018644332885742188 + "time_consumption": 9.72747802734375e-05 }, { "args": [ "'state_a'", "" ], - "asctime": "2019-12-27 08:39:29,812", - "created": 1577432369.8124208, + "asctime": "2020-06-16 09:01:52,448", + "created": 1592290912.4482603, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -9924,8 +10824,8 @@ "'state_a'", "" ], - "asctime": "2019-12-27 08:39:29,812", - "created": 1577432369.8121576, + "asctime": "2020-06-16 09:01:52,448", + "created": 1592290912.4481254, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -9935,15 +10835,15 @@ "lineno": 22, "message": "Result (Initial state after Initialisation): 'state_a' ()", "module": "test", - "msecs": 812.1576309204102, + "msecs": 448.12536239624023, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 446.1700916290283, + "relativeCreated": 439.07928466796875, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { @@ -9952,8 +10852,8 @@ "'state_a'", "" ], - "asctime": "2019-12-27 08:39:29,812", - "created": 1577432369.8122902, + "asctime": "2020-06-16 09:01:52,448", + "created": 1592290912.4481905, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -9963,36 +10863,36 @@ "lineno": 26, "message": "Expectation (Initial state after Initialisation): result = 'state_a' ()", "module": "test", - "msecs": 812.2901916503906, + "msecs": 448.19045066833496, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 446.3026523590088, + "relativeCreated": 439.1443729400635, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" } ], - "msecs": 812.4208450317383, + "msecs": 448.2603073120117, "msg": "Initial state after Initialisation is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 446.43330574035645, + "relativeCreated": 439.21422958374023, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread", - "time_consumption": 0.00013065338134765625 + "time_consumption": 6.985664367675781e-05 }, { "args": [ 0.3 ], - "asctime": "2019-12-27 08:39:30,054", - "created": 1577432370.0545423, + "asctime": "2020-06-16 09:01:52,691", + "created": 1592290912.6912103, "exc_info": null, "exc_text": null, "filename": "test_transitions.py", @@ -10005,10 +10905,10 @@ "moduleLogger": [ { "args": [ - 1.1920928955078125e-05 + 5.4836273193359375e-06 ], - "asctime": "2019-12-27 08:39:29,812", - "created": 1577432369.8125877, + "asctime": "2020-06-16 09:01:52,448", + "created": 1592290912.448348, "exc_info": null, "exc_text": null, "filename": "test_transitions.py", @@ -10018,23 +10918,23 @@ "lineno": 141, "message": "Executing method work after 0.000s", "module": "test_transitions", - "msecs": 812.5877380371094, + "msecs": 448.3480453491211, "msg": "Executing method work after %.03fs", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_transitions.py", - "process": 8624, + "pathname": "src/tests/test_transitions.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 446.60019874572754, + "relativeCreated": 439.3019676208496, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { "args": [ - 0.06035161018371582 + 0.06022930145263672 ], - "asctime": "2019-12-27 08:39:29,872", - "created": 1577432369.8729553, + "asctime": "2020-06-16 09:01:52,508", + "created": 1592290912.5086062, "exc_info": null, "exc_text": null, "filename": "test_transitions.py", @@ -10044,23 +10944,23 @@ "lineno": 141, "message": "Executing method work after 0.060s", "module": "test_transitions", - "msecs": 872.955322265625, + "msecs": 508.6061954498291, "msg": "Executing method work after %.03fs", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_transitions.py", - "process": 8624, + "pathname": "src/tests/test_transitions.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 506.96778297424316, + "relativeCreated": 499.5601177215576, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { "args": [ - 0.12079405784606934 + 0.1205904483795166 ], - "asctime": "2019-12-27 08:39:29,933", - "created": 1577432369.9334145, + "asctime": "2020-06-16 09:01:52,568", + "created": 1592290912.568961, "exc_info": null, "exc_text": null, "filename": "test_transitions.py", @@ -10070,23 +10970,23 @@ "lineno": 141, "message": "Executing method work after 0.121s", "module": "test_transitions", - "msecs": 933.4144592285156, + "msecs": 568.9609050750732, "msg": "Executing method work after %.03fs", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_transitions.py", - "process": 8624, + "pathname": "src/tests/test_transitions.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 567.4269199371338, + "relativeCreated": 559.9148273468018, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { "args": [ - 0.18122267723083496 + 0.1810457706451416 ], - "asctime": "2019-12-27 08:39:29,993", - "created": 1577432369.9938357, + "asctime": "2020-06-16 09:01:52,629", + "created": 1592290912.6295109, "exc_info": null, "exc_text": null, "filename": "test_transitions.py", @@ -10096,15 +10996,15 @@ "lineno": 141, "message": "Executing method work after 0.181s", "module": "test_transitions", - "msecs": 993.8356876373291, + "msecs": 629.5108795166016, "msg": "Executing method work after %.03fs", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_transitions.py", - "process": 8624, + "pathname": "src/tests/test_transitions.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 627.8481483459473, + "relativeCreated": 620.4648017883301, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { @@ -10114,48 +11014,48 @@ "'state_a'", "'state_c'" ], - "asctime": "2019-12-27 08:39:29,994", - "created": 1577432369.9941728, + "asctime": "2020-06-16 09:01:52,630", + "created": 1592290912.6301143, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__set_state__", "levelname": "DEBUG", "levelno": 10, - "lineno": 174, + "lineno": 176, "message": "StateMachine: State change ('condition_true'): 'state_a' -> 'state_c'", "module": "__init__", - "msecs": 994.1728115081787, + "msecs": 630.1143169403076, "msg": "%s State change (%s): %s -> %s", "name": "STATE_MACHINE", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/state_machine/__init__.py", - "process": 8624, + "pathname": "src/state_machine/__init__.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 628.1852722167969, + "relativeCreated": 621.0682392120361, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" } ], - "msecs": 54.54230308532715, + "msecs": 691.2102699279785, "msg": "Waiting for %.3fs or state change", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_transitions.py", - "process": 8624, + "pathname": "src/tests/test_transitions.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 688.5547637939453, + "relativeCreated": 682.164192199707, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread", - "time_consumption": 0.06036949157714844 + "time_consumption": 0.0610959529876709 }, { "args": [ "'state_c'", "" ], - "asctime": "2019-12-27 08:39:30,055", - "created": 1577432370.055215, + "asctime": "2020-06-16 09:01:52,691", + "created": 1592290912.691493, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -10172,8 +11072,8 @@ "'state_c'", "" ], - "asctime": "2019-12-27 08:39:30,054", - "created": 1577432370.0548913, + "asctime": "2020-06-16 09:01:52,691", + "created": 1592290912.6913974, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -10183,15 +11083,15 @@ "lineno": 22, "message": "Result (State after 1st cycle): 'state_c' ()", "module": "test", - "msecs": 54.891347885131836, + "msecs": 691.3974285125732, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 688.90380859375, + "relativeCreated": 682.3513507843018, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { @@ -10200,8 +11100,8 @@ "'state_c'", "" ], - "asctime": "2019-12-27 08:39:30,055", - "created": 1577432370.055063, + "asctime": "2020-06-16 09:01:52,691", + "created": 1592290912.691449, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -10211,41 +11111,41 @@ "lineno": 26, "message": "Expectation (State after 1st cycle): result = 'state_c' ()", "module": "test", - "msecs": 55.06300926208496, + "msecs": 691.4489269256592, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 689.0754699707031, + "relativeCreated": 682.4028491973877, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" } ], - "msecs": 55.214881896972656, + "msecs": 691.493034362793, "msg": "State after 1st cycle is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 689.2273426055908, + "relativeCreated": 682.4469566345215, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread", - "time_consumption": 0.0001518726348876953 + "time_consumption": 4.410743713378906e-05 } ], - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread", - "time_consumption": 0.24374675750732422, - "time_finished": "2019-12-27 08:39:30,055", - "time_start": "2019-12-27 08:39:29,811" + "time_consumption": 0.2437286376953125, + "time_finished": "2020-06-16 09:01:52,691", + "time_start": "2020-06-16 09:01:52,447" }, "_GeMSYHczEemrUqotql_Blw": { "args": null, - "asctime": "2019-12-27 08:39:30,317", - "created": 1577432370.3170915, + "asctime": "2020-06-16 09:01:52,945", + "created": 1592290912.9450119, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -10256,19 +11156,19 @@ "message": "_GeMSYHczEemrUqotql_Blw", "module": "__init__", "moduleLogger": [], - "msecs": 317.0914649963379, + "msecs": 945.0118541717529, "msg": "_GeMSYHczEemrUqotql_Blw", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/__init__.py", - "process": 8624, + "pathname": "/user_data/data/dirk/prj/unittest/state_machine/unittest/src/tests/__init__.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 951.103925704956, + "relativeCreated": 935.9657764434814, "stack_info": null, "testcaseLogger": [ { "args": [], - "asctime": "2019-12-27 08:39:31,068", - "created": 1577432371.0688076, + "asctime": "2020-06-16 09:01:53,696", + "created": 1592290913.6961808, "exc_info": null, "exc_text": null, "filename": "test_interface.py", @@ -10286,26 +11186,26 @@ "None", "'state_a'" ], - "asctime": "2019-12-27 08:39:30,317", - "created": 1577432370.3172853, + "asctime": "2020-06-16 09:01:52,945", + "created": 1592290912.9450667, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__set_state__", "levelname": "DEBUG", "levelno": 10, - "lineno": 174, + "lineno": 176, "message": "StateMachine: State change ('__init__'): None -> 'state_a'", "module": "__init__", - "msecs": 317.28529930114746, + "msecs": 945.0666904449463, "msg": "%s State change (%s): %s -> %s", "name": "STATE_MACHINE", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/state_machine/__init__.py", - "process": 8624, + "pathname": "src/state_machine/__init__.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 951.2977600097656, + "relativeCreated": 936.0206127166748, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { @@ -10315,34 +11215,34 @@ "'state_a'", "'state_b'" ], - "asctime": "2019-12-27 08:39:30,317", - "created": 1577432370.3174534, + "asctime": "2020-06-16 09:01:52,945", + "created": 1592290912.9451268, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__set_state__", "levelname": "DEBUG", "levelno": 10, - "lineno": 174, + "lineno": 176, "message": "StateMachine: State change ('condition_a'): 'state_a' -> 'state_b'", "module": "__init__", - "msecs": 317.45338439941406, + "msecs": 945.1267719268799, "msg": "%s State change (%s): %s -> %s", "name": "STATE_MACHINE", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/state_machine/__init__.py", - "process": 8624, + "pathname": "src/state_machine/__init__.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 951.4658451080322, + "relativeCreated": 936.0806941986084, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { "args": [ 0.75 ], - "asctime": "2019-12-27 08:39:30,317", - "created": 1577432370.317501, + "asctime": "2020-06-16 09:01:52,945", + "created": 1592290912.9451668, "exc_info": null, "exc_text": null, "filename": "test_interface.py", @@ -10352,15 +11252,15 @@ "lineno": 73, "message": "Waiting for 0.75s", "module": "test_interface", - "msecs": 317.5010681152344, + "msecs": 945.166826248169, "msg": "Waiting for %.2fs", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_interface.py", - "process": 8624, + "pathname": "src/tests/test_interface.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 951.5135288238525, + "relativeCreated": 936.1207485198975, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { @@ -10370,50 +11270,50 @@ "'state_b'", "'state_a'" ], - "asctime": "2019-12-27 08:39:31,068", - "created": 1577432371.0685246, + "asctime": "2020-06-16 09:01:53,696", + "created": 1592290913.696067, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__set_state__", "levelname": "DEBUG", "levelno": 10, - "lineno": 174, + "lineno": 176, "message": "StateMachine: State change ('condition_b'): 'state_b' -> 'state_a'", "module": "__init__", - "msecs": 68.52459907531738, + "msecs": 696.0670948028564, "msg": "%s State change (%s): %s -> %s", "name": "STATE_MACHINE", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/state_machine/__init__.py", - "process": 8624, + "pathname": "src/state_machine/__init__.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1702.5370597839355, + "relativeCreated": 1687.021017074585, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" } ], - "msecs": 68.80760192871094, + "msecs": 696.1808204650879, "msg": "Running state machine test sequence.", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_interface.py", - "process": 8624, + "pathname": "src/tests/test_interface.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1702.820062637329, + "relativeCreated": 1687.1347427368164, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread", - "time_consumption": 0.0002830028533935547 + "time_consumption": 0.00011372566223144531 }, { "args": [ - "0.7512595653533936", + "0.7510056495666504", "0.7", "0.8", "" ], - "asctime": "2019-12-27 08:39:31,069", - "created": 1577432371.069427, + "asctime": "2020-06-16 09:01:53,696", + "created": 1592290913.6963825, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -10421,17 +11321,17 @@ "levelname": "INFO", "levelno": 20, "lineno": 218, - "message": "Return Value of previous_state_duration() is correct (Content 0.7512595653533936 in [0.7 ... 0.8] and Type is ).", + "message": "Return Value of previous_state_duration() is correct (Content 0.7510056495666504 in [0.7 ... 0.8] and Type is ).", "module": "test", "moduleLogger": [ { "args": [ "Return Value of previous_state_duration()", - "0.7512595653533936", + "0.7510056495666504", "" ], - "asctime": "2019-12-27 08:39:31,069", - "created": 1577432371.0690796, + "asctime": "2020-06-16 09:01:53,696", + "created": 1592290913.6962805, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -10439,17 +11339,17 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 22, - "message": "Result (Return Value of previous_state_duration()): 0.7512595653533936 ()", + "message": "Result (Return Value of previous_state_duration()): 0.7510056495666504 ()", "module": "test", - "msecs": 69.07963752746582, + "msecs": 696.2804794311523, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1703.092098236084, + "relativeCreated": 1687.2344017028809, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { @@ -10458,8 +11358,8 @@ "0.7", "0.8" ], - "asctime": "2019-12-27 08:39:31,069", - "created": 1577432371.0692496, + "asctime": "2020-06-16 09:01:53,696", + "created": 1592290913.6963332, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -10469,41 +11369,41 @@ "lineno": 30, "message": "Expectation (Return Value of previous_state_duration()): 0.7 <= result <= 0.8", "module": "test", - "msecs": 69.24962997436523, + "msecs": 696.3331699371338, "msg": "Expectation (%s): %s <= result <= %s", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1703.2620906829834, + "relativeCreated": 1687.2870922088623, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" } ], - "msecs": 69.4270133972168, + "msecs": 696.3825225830078, "msg": "Return Value of previous_state_duration() is correct (Content %s in [%s ... %s] and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1703.439474105835, + "relativeCreated": 1687.3364448547363, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread", - "time_consumption": 0.0001773834228515625 + "time_consumption": 4.935264587402344e-05 } ], - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread", - "time_consumption": 0.7523355484008789, - "time_finished": "2019-12-27 08:39:31,069", - "time_start": "2019-12-27 08:39:30,317" + "time_consumption": 0.7513706684112549, + "time_finished": "2020-06-16 09:01:53,696", + "time_start": "2020-06-16 09:01:52,945" }, "_P7R34HczEemrUqotql_Blw": { "args": null, - "asctime": "2019-12-27 08:39:29,429", - "created": 1577432369.429698, + "asctime": "2020-06-16 09:01:52,067", + "created": 1592290912.0674403, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -10514,19 +11414,19 @@ "message": "_P7R34HczEemrUqotql_Blw", "module": "__init__", "moduleLogger": [], - "msecs": 429.69799041748047, + "msecs": 67.44027137756348, "msg": "_P7R34HczEemrUqotql_Blw", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/__init__.py", - "process": 8624, + "pathname": "/user_data/data/dirk/prj/unittest/state_machine/unittest/src/tests/__init__.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 63.71045112609863, + "relativeCreated": 58.39419364929199, "stack_info": null, "testcaseLogger": [ { "args": [], - "asctime": "2019-12-27 08:39:29,429", - "created": 1577432369.429824, + "asctime": "2020-06-16 09:01:52,067", + "created": 1592290912.0675693, "exc_info": null, "exc_text": null, "filename": "test_transitions.py", @@ -10544,48 +11444,48 @@ "None", "'state_a'" ], - "asctime": "2019-12-27 08:39:29,429", - "created": 1577432369.4297793, + "asctime": "2020-06-16 09:01:52,067", + "created": 1592290912.0675225, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__set_state__", "levelname": "DEBUG", "levelno": 10, - "lineno": 174, + "lineno": 176, "message": "StateMachine: State change ('__init__'): None -> 'state_a'", "module": "__init__", - "msecs": 429.7792911529541, + "msecs": 67.52252578735352, "msg": "%s State change (%s): %s -> %s", "name": "STATE_MACHINE", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/state_machine/__init__.py", - "process": 8624, + "pathname": "src/state_machine/__init__.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 63.791751861572266, + "relativeCreated": 58.47644805908203, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" } ], - "msecs": 429.8241138458252, + "msecs": 67.56925582885742, "msg": "Initialising state machine with state_a", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_transitions.py", - "process": 8624, + "pathname": "src/tests/test_transitions.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 63.83657455444336, + "relativeCreated": 58.52317810058594, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread", - "time_consumption": 4.482269287109375e-05 + "time_consumption": 4.673004150390625e-05 }, { "args": [ "'state_a'", "" ], - "asctime": "2019-12-27 08:39:29,429", - "created": 1577432369.42994, + "asctime": "2020-06-16 09:01:52,067", + "created": 1592290912.0676894, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -10602,8 +11502,8 @@ "'state_a'", "" ], - "asctime": "2019-12-27 08:39:29,429", - "created": 1577432369.429871, + "asctime": "2020-06-16 09:01:52,067", + "created": 1592290912.0676196, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -10613,15 +11513,15 @@ "lineno": 22, "message": "Result (Initial state after Initialisation): 'state_a' ()", "module": "test", - "msecs": 429.8710823059082, + "msecs": 67.61956214904785, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 63.88354301452637, + "relativeCreated": 58.57348442077637, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { @@ -10630,8 +11530,8 @@ "'state_a'", "" ], - "asctime": "2019-12-27 08:39:29,429", - "created": 1577432369.429906, + "asctime": "2020-06-16 09:01:52,067", + "created": 1592290912.0676546, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -10641,34 +11541,34 @@ "lineno": 26, "message": "Expectation (Initial state after Initialisation): result = 'state_a' ()", "module": "test", - "msecs": 429.90589141845703, + "msecs": 67.65460968017578, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 63.918352127075195, + "relativeCreated": 58.6085319519043, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" } ], - "msecs": 429.93998527526855, + "msecs": 67.68941879272461, "msg": "Initial state after Initialisation is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 63.95244598388672, + "relativeCreated": 58.643341064453125, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread", - "time_consumption": 3.409385681152344e-05 + "time_consumption": 3.4809112548828125e-05 }, { "args": [], - "asctime": "2019-12-27 08:39:29,430", - "created": 1577432369.430037, + "asctime": "2020-06-16 09:01:52,067", + "created": 1592290912.0677884, "exc_info": null, "exc_text": null, "filename": "test_transitions.py", @@ -10686,48 +11586,48 @@ "'state_a'", "'state_b'" ], - "asctime": "2019-12-27 08:39:29,429", - "created": 1577432369.429998, + "asctime": "2020-06-16 09:01:52,067", + "created": 1592290912.0677476, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__set_state__", "levelname": "DEBUG", "levelno": 10, - "lineno": 174, + "lineno": 176, "message": "StateMachine: State change ('condition_true'): 'state_a' -> 'state_b'", "module": "__init__", - "msecs": 429.99792098999023, + "msecs": 67.74759292602539, "msg": "%s State change (%s): %s -> %s", "name": "STATE_MACHINE", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/state_machine/__init__.py", - "process": 8624, + "pathname": "src/state_machine/__init__.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 64.0103816986084, + "relativeCreated": 58.701515197753906, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" } ], - "msecs": 430.0370216369629, + "msecs": 67.78836250305176, "msg": "Work routine executed the 1st time to do the state change. Defined Transitions are: True->state_b (0.0s); False->state_c (0.0s)", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_transitions.py", - "process": 8624, + "pathname": "src/tests/test_transitions.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 64.04948234558105, + "relativeCreated": 58.74228477478027, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread", - "time_consumption": 3.910064697265625e-05 + "time_consumption": 4.076957702636719e-05 }, { "args": [ "'state_b'", "" ], - "asctime": "2019-12-27 08:39:29,430", - "created": 1577432369.4301498, + "asctime": "2020-06-16 09:01:52,067", + "created": 1592290912.067907, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -10744,8 +11644,8 @@ "'state_b'", "" ], - "asctime": "2019-12-27 08:39:29,430", - "created": 1577432369.4300807, + "asctime": "2020-06-16 09:01:52,067", + "created": 1592290912.0678365, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -10755,15 +11655,15 @@ "lineno": 22, "message": "Result (State after 1st execution of work method): 'state_b' ()", "module": "test", - "msecs": 430.0806522369385, + "msecs": 67.83652305603027, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 64.09311294555664, + "relativeCreated": 58.79044532775879, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { @@ -10772,8 +11672,8 @@ "'state_b'", "" ], - "asctime": "2019-12-27 08:39:29,430", - "created": 1577432369.430114, + "asctime": "2020-06-16 09:01:52,067", + "created": 1592290912.0678704, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -10783,34 +11683,34 @@ "lineno": 26, "message": "Expectation (State after 1st execution of work method): result = 'state_b' ()", "module": "test", - "msecs": 430.1140308380127, + "msecs": 67.8703784942627, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 64.12649154663086, + "relativeCreated": 58.82430076599121, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" } ], - "msecs": 430.14979362487793, + "msecs": 67.90709495544434, "msg": "State after 1st execution of work method is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 64.1622543334961, + "relativeCreated": 58.86101722717285, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread", - "time_consumption": 3.5762786865234375e-05 + "time_consumption": 3.6716461181640625e-05 }, { "args": [], - "asctime": "2019-12-27 08:39:29,430", - "created": 1577432369.4302402, + "asctime": "2020-06-16 09:01:52,068", + "created": 1592290912.068002, "exc_info": null, "exc_text": null, "filename": "test_transitions.py", @@ -10828,48 +11728,48 @@ "'state_b'", "'state_c'" ], - "asctime": "2019-12-27 08:39:29,430", - "created": 1577432369.4302025, + "asctime": "2020-06-16 09:01:52,067", + "created": 1592290912.0679626, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__set_state__", "levelname": "DEBUG", "levelno": 10, - "lineno": 174, + "lineno": 176, "message": "StateMachine: State change ('condition_true'): 'state_b' -> 'state_c'", "module": "__init__", - "msecs": 430.2024841308594, + "msecs": 67.962646484375, "msg": "%s State change (%s): %s -> %s", "name": "STATE_MACHINE", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/state_machine/__init__.py", - "process": 8624, + "pathname": "src/state_machine/__init__.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 64.21494483947754, + "relativeCreated": 58.916568756103516, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" } ], - "msecs": 430.2401542663574, + "msecs": 68.00198554992676, "msg": "Work routine executed the 2nd time to do the state change. Defined Transitions are: False->state_a (0.0s); True->state_c (0.0s)", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_transitions.py", - "process": 8624, + "pathname": "src/tests/test_transitions.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 64.25261497497559, + "relativeCreated": 58.95590782165527, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread", - "time_consumption": 3.7670135498046875e-05 + "time_consumption": 3.933906555175781e-05 }, { "args": [ "'state_c'", "" ], - "asctime": "2019-12-27 08:39:29,430", - "created": 1577432369.4303534, + "asctime": "2020-06-16 09:01:52,068", + "created": 1592290912.0681162, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -10886,8 +11786,8 @@ "'state_c'", "" ], - "asctime": "2019-12-27 08:39:29,430", - "created": 1577432369.430284, + "asctime": "2020-06-16 09:01:52,068", + "created": 1592290912.0680494, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -10897,15 +11797,15 @@ "lineno": 22, "message": "Result (State after 2nd execution of work method): 'state_c' ()", "module": "test", - "msecs": 430.2840232849121, + "msecs": 68.04943084716797, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 64.29648399353027, + "relativeCreated": 59.003353118896484, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { @@ -10914,8 +11814,8 @@ "'state_c'", "" ], - "asctime": "2019-12-27 08:39:29,430", - "created": 1577432369.4303195, + "asctime": "2020-06-16 09:01:52,068", + "created": 1592290912.0680823, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -10925,34 +11825,34 @@ "lineno": 26, "message": "Expectation (State after 2nd execution of work method): result = 'state_c' ()", "module": "test", - "msecs": 430.31954765319824, + "msecs": 68.08233261108398, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 64.3320083618164, + "relativeCreated": 59.0362548828125, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" } ], - "msecs": 430.35340309143066, + "msecs": 68.1161880493164, "msg": "State after 2nd execution of work method is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 64.36586380004883, + "relativeCreated": 59.07011032104492, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread", "time_consumption": 3.3855438232421875e-05 }, { "args": [], - "asctime": "2019-12-27 08:39:29,430", - "created": 1577432369.4304166, + "asctime": "2020-06-16 09:01:52,068", + "created": 1592290912.0681653, "exc_info": null, "exc_text": null, "filename": "test_transitions.py", @@ -10963,15 +11863,15 @@ "message": "Work routine executed the 3rd time with no effect. No Transitions starting from state_c (dead end)", "module": "test_transitions", "moduleLogger": [], - "msecs": 430.4165840148926, + "msecs": 68.16530227661133, "msg": "Work routine executed the 3rd time with no effect. No Transitions starting from state_c (dead end)", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_transitions.py", - "process": 8624, + "pathname": "src/tests/test_transitions.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 64.42904472351074, + "relativeCreated": 59.119224548339844, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread", "time_consumption": 0.0 }, @@ -10980,8 +11880,8 @@ "'state_c'", "" ], - "asctime": "2019-12-27 08:39:29,430", - "created": 1577432369.4305265, + "asctime": "2020-06-16 09:01:52,068", + "created": 1592290912.0682774, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -10998,8 +11898,8 @@ "'state_c'", "" ], - "asctime": "2019-12-27 08:39:29,430", - "created": 1577432369.4304605, + "asctime": "2020-06-16 09:01:52,068", + "created": 1592290912.0682106, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -11009,15 +11909,15 @@ "lineno": 22, "message": "Result (State after 3rd execution of work method): 'state_c' ()", "module": "test", - "msecs": 430.46045303344727, + "msecs": 68.21060180664062, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 64.47291374206543, + "relativeCreated": 59.16452407836914, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { @@ -11026,8 +11926,8 @@ "'state_c'", "" ], - "asctime": "2019-12-27 08:39:29,430", - "created": 1577432369.4304934, + "asctime": "2020-06-16 09:01:52,068", + "created": 1592290912.0682442, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -11037,41 +11937,434 @@ "lineno": 26, "message": "Expectation (State after 3rd execution of work method): result = 'state_c' ()", "module": "test", - "msecs": 430.4933547973633, + "msecs": 68.24421882629395, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 64.50581550598145, + "relativeCreated": 59.19814109802246, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" } ], - "msecs": 430.5264949798584, + "msecs": 68.27735900878906, "msg": "State after 3rd execution of work method is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 64.53895568847656, + "relativeCreated": 59.23128128051758, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread", "time_consumption": 3.314018249511719e-05 } ], - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread", - "time_consumption": 0.0008285045623779297, - "time_finished": "2019-12-27 08:39:29,430", - "time_start": "2019-12-27 08:39:29,429" + "time_consumption": 0.0008370876312255859, + "time_finished": "2020-06-16 09:01:52,068", + "time_start": "2020-06-16 09:01:52,067" + }, + "_QofFgK-aEeqZm7ouFR1drQ": { + "args": null, + "asctime": "2020-06-16 09:01:53,703", + "created": 1592290913.7032058, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "testrun", + "levelname": "INFO", + "levelno": 20, + "lineno": 47, + "message": "_QofFgK-aEeqZm7ouFR1drQ", + "module": "__init__", + "moduleLogger": [], + "msecs": 703.2058238983154, + "msg": "_QofFgK-aEeqZm7ouFR1drQ", + "name": "__tLogger__", + "pathname": "/user_data/data/dirk/prj/unittest/state_machine/unittest/src/tests/__init__.py", + "process": 11805, + "processName": "MainProcess", + "relativeCreated": 1694.159746170044, + "stack_info": null, + "testcaseLogger": [ + { + "args": [], + "asctime": "2020-06-16 09:01:53,703", + "created": 1592290913.703721, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "report", + "levelname": "INFO", + "levelno": 20, + "lineno": 166, + "message": "Callback execution order: Values and number of submitted values is correct. See detailed log for more information.", + "module": "test", + "moduleLogger": [ + { + "args": [ + "StateMachine:", + "'__init__'", + "None", + "'state_a'" + ], + "asctime": "2020-06-16 09:01:53,703", + "created": 1592290913.7032652, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__set_state__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 176, + "message": "StateMachine: State change ('__init__'): None -> 'state_a'", + "module": "__init__", + "msecs": 703.2651901245117, + "msg": "%s State change (%s): %s -> %s", + "name": "STATE_MACHINE", + "pathname": "src/state_machine/__init__.py", + "process": 11805, + "processName": "MainProcess", + "relativeCreated": 1694.2191123962402, + "stack_info": null, + "thread": 140551289812800, + "threadName": "MainThread" + }, + { + "args": [ + "StateMachine:", + "'condition_a'", + "'state_a'", + "'state_b'" + ], + "asctime": "2020-06-16 09:01:53,703", + "created": 1592290913.7033312, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__set_state__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 176, + "message": "StateMachine: State change ('condition_a'): 'state_a' -> 'state_b'", + "module": "__init__", + "msecs": 703.3312320709229, + "msg": "%s State change (%s): %s -> %s", + "name": "STATE_MACHINE", + "pathname": "src/state_machine/__init__.py", + "process": 11805, + "processName": "MainProcess", + "relativeCreated": 1694.2851543426514, + "stack_info": null, + "thread": 140551289812800, + "threadName": "MainThread" + }, + { + "args": [ + 0, + "unittest.test", + "report_value" + ], + "asctime": "2020-06-16 09:01:53,703", + "created": 1592290913.7033725, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__set_state__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 195, + "message": "Executing callback 0 - unittest.test.report_value", + "module": "__init__", + "msecs": 703.3724784851074, + "msg": "Executing callback %d - %s.%s", + "name": "STATE_MACHINE", + "pathname": "src/state_machine/__init__.py", + "process": 11805, + "processName": "MainProcess", + "relativeCreated": 1694.326400756836, + "stack_info": null, + "thread": 140551289812800, + "threadName": "MainThread" + }, + { + "args": [ + 1, + "unittest.test", + "report_value" + ], + "asctime": "2020-06-16 09:01:53,703", + "created": 1592290913.7034068, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__set_state__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 195, + "message": "Executing callback 1 - unittest.test.report_value", + "module": "__init__", + "msecs": 703.406810760498, + "msg": "Executing callback %d - %s.%s", + "name": "STATE_MACHINE", + "pathname": "src/state_machine/__init__.py", + "process": 11805, + "processName": "MainProcess", + "relativeCreated": 1694.3607330322266, + "stack_info": null, + "thread": 140551289812800, + "threadName": "MainThread" + }, + { + "args": [ + "Callback execution order", + "[ 'specific callback', 'nonspecific callback' ]", + "" + ], + "asctime": "2020-06-16 09:01:53,703", + "created": 1592290913.7034516, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Callback execution order): [ 'specific callback', 'nonspecific callback' ] ()", + "module": "test", + "msecs": 703.4516334533691, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 11805, + "processName": "MainProcess", + "relativeCreated": 1694.4055557250977, + "stack_info": null, + "thread": 140551289812800, + "threadName": "MainThread" + }, + { + "args": [ + "Callback execution order", + "[ 'specific callback', 'nonspecific callback' ]", + "" + ], + "asctime": "2020-06-16 09:01:53,703", + "created": 1592290913.703489, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Callback execution order): result = [ 'specific callback', 'nonspecific callback' ] ()", + "module": "test", + "msecs": 703.4890651702881, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 11805, + "processName": "MainProcess", + "relativeCreated": 1694.4429874420166, + "stack_info": null, + "thread": 140551289812800, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 1", + "'specific callback'", + "" + ], + "asctime": "2020-06-16 09:01:53,703", + "created": 1592290913.7035253, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Submitted value number 1): 'specific callback' ()", + "module": "test", + "msecs": 703.5253047943115, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 11805, + "processName": "MainProcess", + "relativeCreated": 1694.47922706604, + "stack_info": null, + "thread": 140551289812800, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 1", + "'specific callback'", + "" + ], + "asctime": "2020-06-16 09:01:53,703", + "created": 1592290913.703558, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Submitted value number 1): result = 'specific callback' ()", + "module": "test", + "msecs": 703.5579681396484, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 11805, + "processName": "MainProcess", + "relativeCreated": 1694.511890411377, + "stack_info": null, + "thread": 140551289812800, + "threadName": "MainThread" + }, + { + "args": [ + "'specific callback'", + "" + ], + "asctime": "2020-06-16 09:01:53,703", + "created": 1592290913.7035909, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Submitted value number 1 is correct (Content 'specific callback' and Type is ).", + "module": "test", + "msecs": 703.5908699035645, + "msg": "Submitted value number 1 is correct (Content %s and Type is %s).", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 11805, + "processName": "MainProcess", + "relativeCreated": 1694.544792175293, + "stack_info": null, + "thread": 140551289812800, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 2", + "'nonspecific callback'", + "" + ], + "asctime": "2020-06-16 09:01:53,703", + "created": 1592290913.7036254, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_result__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 22, + "message": "Result (Submitted value number 2): 'nonspecific callback' ()", + "module": "test", + "msecs": 703.6254405975342, + "msg": "Result (%s): %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 11805, + "processName": "MainProcess", + "relativeCreated": 1694.5793628692627, + "stack_info": null, + "thread": 140551289812800, + "threadName": "MainThread" + }, + { + "args": [ + "Submitted value number 2", + "'nonspecific callback'", + "" + ], + "asctime": "2020-06-16 09:01:53,703", + "created": 1592290913.7036574, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "__report_expectation_equivalency__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 26, + "message": "Expectation (Submitted value number 2): result = 'nonspecific callback' ()", + "module": "test", + "msecs": 703.6573886871338, + "msg": "Expectation (%s): result = %s (%s)", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 11805, + "processName": "MainProcess", + "relativeCreated": 1694.6113109588623, + "stack_info": null, + "thread": 140551289812800, + "threadName": "MainThread" + }, + { + "args": [ + "'nonspecific callback'", + "" + ], + "asctime": "2020-06-16 09:01:53,703", + "created": 1592290913.7036898, + "exc_info": null, + "exc_text": null, + "filename": "test.py", + "funcName": "equivalency_chk", + "levelname": "INFO", + "levelno": 20, + "lineno": 142, + "message": "Submitted value number 2 is correct (Content 'nonspecific callback' and Type is ).", + "module": "test", + "msecs": 703.6898136138916, + "msg": "Submitted value number 2 is correct (Content %s and Type is %s).", + "name": "__unittest__", + "pathname": "src/unittest/test.py", + "process": 11805, + "processName": "MainProcess", + "relativeCreated": 1694.6437358856201, + "stack_info": null, + "thread": 140551289812800, + "threadName": "MainThread" + } + ], + "msecs": 703.7210464477539, + "msg": "Callback execution order: Values and number of submitted values is correct. See detailed log for more information.", + "name": "__tLogger__", + "pathname": "src/unittest/test.py", + "process": 11805, + "processName": "MainProcess", + "relativeCreated": 1694.6749687194824, + "stack_info": null, + "thread": 140551289812800, + "threadName": "MainThread", + "time_consumption": 3.123283386230469e-05 + } + ], + "thread": 140551289812800, + "threadName": "MainThread", + "time_consumption": 0.0005152225494384766, + "time_finished": "2020-06-16 09:01:53,703", + "time_start": "2020-06-16 09:01:53,703" }, "_XzMFcHYZEem_kd-7nxt1sg": { "args": null, - "asctime": "2019-12-27 08:39:31,069", - "created": 1577432371.069738, + "asctime": "2020-06-16 09:01:53,696", + "created": 1592290913.6965, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -11082,19 +12375,19 @@ "message": "_XzMFcHYZEem_kd-7nxt1sg", "module": "__init__", "moduleLogger": [], - "msecs": 69.73791122436523, + "msecs": 696.5000629425049, "msg": "_XzMFcHYZEem_kd-7nxt1sg", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/__init__.py", - "process": 8624, + "pathname": "/user_data/data/dirk/prj/unittest/state_machine/unittest/src/tests/__init__.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1703.7503719329834, + "relativeCreated": 1687.4539852142334, "stack_info": null, "testcaseLogger": [ { "args": [], - "asctime": "2019-12-27 08:39:31,072", - "created": 1577432371.072766, + "asctime": "2020-06-16 09:01:53,697", + "created": 1592290913.6974006, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", @@ -11112,34 +12405,34 @@ "None", "'state_a'" ], - "asctime": "2019-12-27 08:39:31,069", - "created": 1577432371.0699704, + "asctime": "2020-06-16 09:01:53,696", + "created": 1592290913.6965804, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__set_state__", "levelname": "DEBUG", "levelno": 10, - "lineno": 174, + "lineno": 176, "message": "StateMachine: State change ('__init__'): None -> 'state_a'", "module": "__init__", - "msecs": 69.97036933898926, + "msecs": 696.5804100036621, "msg": "%s State change (%s): %s -> %s", "name": "STATE_MACHINE", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/state_machine/__init__.py", - "process": 8624, + "pathname": "src/state_machine/__init__.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1703.9828300476074, + "relativeCreated": 1687.5343322753906, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { "args": [ 1 ], - "asctime": "2019-12-27 08:39:31,070", - "created": 1577432371.0702002, + "asctime": "2020-06-16 09:01:53,696", + "created": 1592290913.6966581, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", @@ -11149,15 +12442,15 @@ "lineno": 55, "message": "Increasing sequence number to 1 caused by sequence progress", "module": "test_callbacks", - "msecs": 70.20020484924316, + "msecs": 696.6581344604492, "msg": "Increasing sequence number to %d caused by sequence progress", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_callbacks.py", - "process": 8624, + "pathname": "src/tests/test_callbacks.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1704.2126655578613, + "relativeCreated": 1687.6120567321777, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { @@ -11167,34 +12460,62 @@ "'state_a'", "'state_b'" ], - "asctime": "2019-12-27 08:39:31,071", - "created": 1577432371.0712972, + "asctime": "2020-06-16 09:01:53,696", + "created": 1592290913.696906, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__set_state__", "levelname": "DEBUG", "levelno": 10, - "lineno": 174, + "lineno": 176, "message": "StateMachine: State change ('condition_a'): 'state_a' -> 'state_b'", "module": "__init__", - "msecs": 71.29716873168945, + "msecs": 696.9060897827148, "msg": "%s State change (%s): %s -> %s", "name": "STATE_MACHINE", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/state_machine/__init__.py", - "process": 8624, + "pathname": "src/state_machine/__init__.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1705.3096294403076, + "relativeCreated": 1687.8600120544434, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, + "threadName": "MainThread" + }, + { + "args": [ + 0, + "tests.test_callbacks", + "exec_with_counter" + ], + "asctime": "2020-06-16 09:01:53,696", + "created": 1592290913.6969612, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__set_state__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 195, + "message": "Executing callback 0 - tests.test_callbacks.exec_with_counter", + "module": "__init__", + "msecs": 696.9611644744873, + "msg": "Executing callback %d - %s.%s", + "name": "STATE_MACHINE", + "pathname": "src/state_machine/__init__.py", + "process": 11805, + "processName": "MainProcess", + "relativeCreated": 1687.9150867462158, + "stack_info": null, + "thread": 140551289812800, "threadName": "MainThread" }, { "args": [ 2 ], - "asctime": "2019-12-27 08:39:31,071", - "created": 1577432371.071477, + "asctime": "2020-06-16 09:01:53,697", + "created": 1592290913.6970055, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", @@ -11204,23 +12525,51 @@ "lineno": 24, "message": "Increasing sequence number to 2 caused by callback_execution", "module": "test_callbacks", - "msecs": 71.47693634033203, + "msecs": 697.0055103302002, "msg": "Increasing sequence number to %d caused by callback_execution", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_callbacks.py", - "process": 8624, + "pathname": "src/tests/test_callbacks.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1705.4893970489502, + "relativeCreated": 1687.9594326019287, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, + "threadName": "MainThread" + }, + { + "args": [ + 1, + "tests.test_callbacks", + "exec_with_counter" + ], + "asctime": "2020-06-16 09:01:53,697", + "created": 1592290913.697052, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__set_state__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 195, + "message": "Executing callback 1 - tests.test_callbacks.exec_with_counter", + "module": "__init__", + "msecs": 697.052001953125, + "msg": "Executing callback %d - %s.%s", + "name": "STATE_MACHINE", + "pathname": "src/state_machine/__init__.py", + "process": 11805, + "processName": "MainProcess", + "relativeCreated": 1688.0059242248535, + "stack_info": null, + "thread": 140551289812800, "threadName": "MainThread" }, { "args": [ 3 ], - "asctime": "2019-12-27 08:39:31,071", - "created": 1577432371.0716345, + "asctime": "2020-06-16 09:01:53,697", + "created": 1592290913.697102, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", @@ -11230,23 +12579,23 @@ "lineno": 24, "message": "Increasing sequence number to 3 caused by callback_execution", "module": "test_callbacks", - "msecs": 71.63453102111816, + "msecs": 697.1020698547363, "msg": "Increasing sequence number to %d caused by callback_execution", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_callbacks.py", - "process": 8624, + "pathname": "src/tests/test_callbacks.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1705.6469917297363, + "relativeCreated": 1688.0559921264648, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { "args": [ 4 ], - "asctime": "2019-12-27 08:39:31,071", - "created": 1577432371.0717874, + "asctime": "2020-06-16 09:01:53,697", + "created": 1592290913.6971412, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", @@ -11256,15 +12605,15 @@ "lineno": 55, "message": "Increasing sequence number to 4 caused by sequence progress", "module": "test_callbacks", - "msecs": 71.78735733032227, + "msecs": 697.141170501709, "msg": "Increasing sequence number to %d caused by sequence progress", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_callbacks.py", - "process": 8624, + "pathname": "src/tests/test_callbacks.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1705.7998180389404, + "relativeCreated": 1688.0950927734375, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { @@ -11274,34 +12623,34 @@ "'state_b'", "'state_a'" ], - "asctime": "2019-12-27 08:39:31,071", - "created": 1577432371.0719836, + "asctime": "2020-06-16 09:01:53,697", + "created": 1592290913.6971889, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__set_state__", "levelname": "DEBUG", "levelno": 10, - "lineno": 174, + "lineno": 176, "message": "StateMachine: State change ('condition_b'): 'state_b' -> 'state_a'", "module": "__init__", - "msecs": 71.98357582092285, + "msecs": 697.1888542175293, "msg": "%s State change (%s): %s -> %s", "name": "STATE_MACHINE", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/state_machine/__init__.py", - "process": 8624, + "pathname": "src/state_machine/__init__.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1705.996036529541, + "relativeCreated": 1688.1427764892578, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { "args": [ 5 ], - "asctime": "2019-12-27 08:39:31,072", - "created": 1577432371.072143, + "asctime": "2020-06-16 09:01:53,697", + "created": 1592290913.6972303, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", @@ -11311,15 +12660,15 @@ "lineno": 55, "message": "Increasing sequence number to 5 caused by sequence progress", "module": "test_callbacks", - "msecs": 72.1430778503418, + "msecs": 697.230339050293, "msg": "Increasing sequence number to %d caused by sequence progress", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_callbacks.py", - "process": 8624, + "pathname": "src/tests/test_callbacks.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1706.15553855896, + "relativeCreated": 1688.1842613220215, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { @@ -11329,34 +12678,34 @@ "'state_a'", "'state_b'" ], - "asctime": "2019-12-27 08:39:31,072", - "created": 1577432371.0723133, + "asctime": "2020-06-16 09:01:53,697", + "created": 1592290913.697276, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__set_state__", "levelname": "DEBUG", "levelno": 10, - "lineno": 174, + "lineno": 176, "message": "StateMachine: State change ('condition_b'): 'state_a' -> 'state_b'", "module": "__init__", - "msecs": 72.31330871582031, + "msecs": 697.2761154174805, "msg": "%s State change (%s): %s -> %s", "name": "STATE_MACHINE", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/state_machine/__init__.py", - "process": 8624, + "pathname": "src/state_machine/__init__.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1706.3257694244385, + "relativeCreated": 1688.230037689209, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { "args": [ 6 ], - "asctime": "2019-12-27 08:39:31,072", - "created": 1577432371.0724595, + "asctime": "2020-06-16 09:01:53,697", + "created": 1592290913.6973162, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", @@ -11366,15 +12715,15 @@ "lineno": 55, "message": "Increasing sequence number to 6 caused by sequence progress", "module": "test_callbacks", - "msecs": 72.45945930480957, + "msecs": 697.3161697387695, "msg": "Increasing sequence number to %d caused by sequence progress", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_callbacks.py", - "process": 8624, + "pathname": "src/tests/test_callbacks.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1706.4719200134277, + "relativeCreated": 1688.270092010498, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { @@ -11384,45 +12733,45 @@ "'state_b'", "'state_c'" ], - "asctime": "2019-12-27 08:39:31,072", - "created": 1577432371.0726268, + "asctime": "2020-06-16 09:01:53,697", + "created": 1592290913.6973615, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__set_state__", "levelname": "DEBUG", "levelno": 10, - "lineno": 174, + "lineno": 176, "message": "StateMachine: State change ('condition_c'): 'state_b' -> 'state_c'", "module": "__init__", - "msecs": 72.62682914733887, + "msecs": 697.3614692687988, "msg": "%s State change (%s): %s -> %s", "name": "STATE_MACHINE", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/state_machine/__init__.py", - "process": 8624, + "pathname": "src/state_machine/__init__.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1706.639289855957, + "relativeCreated": 1688.3153915405273, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" } ], - "msecs": 72.76606559753418, + "msecs": 697.4005699157715, "msg": "Running state machine sequence and storing sequence number for each callback", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_callbacks.py", - "process": 8624, + "pathname": "src/tests/test_callbacks.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1706.7785263061523, + "relativeCreated": 1688.3544921875, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread", - "time_consumption": 0.0001392364501953125 + "time_consumption": 3.910064697265625e-05 }, { "args": [], - "asctime": "2019-12-27 08:39:31,073", - "created": 1577432371.0736756, + "asctime": "2020-06-16 09:01:53,697", + "created": 1592290913.697651, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -11439,8 +12788,8 @@ "[ 1 ]", "" ], - "asctime": "2019-12-27 08:39:31,072", - "created": 1577432371.0729778, + "asctime": "2020-06-16 09:01:53,697", + "created": 1592290913.6974673, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -11450,15 +12799,15 @@ "lineno": 22, "message": "Result (Execution of state machine callback (1) (state_b, condition_a) identified by a sequence number): [ 1 ] ()", "module": "test", - "msecs": 72.97778129577637, + "msecs": 697.4673271179199, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1706.9902420043945, + "relativeCreated": 1688.4212493896484, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { @@ -11467,8 +12816,8 @@ "[ 1 ]", "" ], - "asctime": "2019-12-27 08:39:31,073", - "created": 1577432371.0731244, + "asctime": "2020-06-16 09:01:53,697", + "created": 1592290913.697507, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -11478,15 +12827,15 @@ "lineno": 26, "message": "Expectation (Execution of state machine callback (1) (state_b, condition_a) identified by a sequence number): result = [ 1 ] ()", "module": "test", - "msecs": 73.12440872192383, + "msecs": 697.5069046020508, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1707.136869430542, + "relativeCreated": 1688.4608268737793, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { @@ -11495,8 +12844,8 @@ "1", "" ], - "asctime": "2019-12-27 08:39:31,073", - "created": 1577432371.0732653, + "asctime": "2020-06-16 09:01:53,697", + "created": 1592290913.6975486, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -11506,15 +12855,15 @@ "lineno": 22, "message": "Result (Submitted value number 1): 1 ()", "module": "test", - "msecs": 73.26531410217285, + "msecs": 697.5486278533936, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1707.277774810791, + "relativeCreated": 1688.502550125122, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { @@ -11523,8 +12872,8 @@ "1", "" ], - "asctime": "2019-12-27 08:39:31,073", - "created": 1577432371.0734253, + "asctime": "2020-06-16 09:01:53,697", + "created": 1592290913.697582, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -11534,15 +12883,15 @@ "lineno": 26, "message": "Expectation (Submitted value number 1): result = 1 ()", "module": "test", - "msecs": 73.42529296875, + "msecs": 697.5820064544678, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1707.4377536773682, + "relativeCreated": 1688.5359287261963, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { @@ -11550,8 +12899,8 @@ "1", "" ], - "asctime": "2019-12-27 08:39:31,073", - "created": 1577432371.0735555, + "asctime": "2020-06-16 09:01:53,697", + "created": 1592290913.6976187, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -11561,34 +12910,34 @@ "lineno": 142, "message": "Submitted value number 1 is correct (Content 1 and Type is ).", "module": "test", - "msecs": 73.55546951293945, + "msecs": 697.6187229156494, "msg": "Submitted value number 1 is correct (Content %s and Type is %s).", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1707.5679302215576, + "relativeCreated": 1688.572645187378, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" } ], - "msecs": 73.67563247680664, + "msecs": 697.6509094238281, "msg": "Execution of state machine callback (1) (state_b, condition_a) identified by a sequence number: Values and number of submitted values is correct. See detailed log for more information.", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1707.6880931854248, + "relativeCreated": 1688.6048316955566, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread", - "time_consumption": 0.0001201629638671875 + "time_consumption": 3.218650817871094e-05 }, { "args": [], - "asctime": "2019-12-27 08:39:31,074", - "created": 1577432371.0745146, + "asctime": "2020-06-16 09:01:53,697", + "created": 1592290913.6978724, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -11605,8 +12954,8 @@ "[ 2 ]", "" ], - "asctime": "2019-12-27 08:39:31,073", - "created": 1577432371.073858, + "asctime": "2020-06-16 09:01:53,697", + "created": 1592290913.6977024, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -11616,15 +12965,15 @@ "lineno": 22, "message": "Result (Execution of state machine callback (2) (state_b, condition_a) identified by a sequence number): [ 2 ] ()", "module": "test", - "msecs": 73.85802268981934, + "msecs": 697.7024078369141, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1707.8704833984375, + "relativeCreated": 1688.6563301086426, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { @@ -11633,8 +12982,8 @@ "[ 2 ]", "" ], - "asctime": "2019-12-27 08:39:31,074", - "created": 1577432371.074003, + "asctime": "2020-06-16 09:01:53,697", + "created": 1592290913.6977386, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -11644,15 +12993,15 @@ "lineno": 26, "message": "Expectation (Execution of state machine callback (2) (state_b, condition_a) identified by a sequence number): result = [ 2 ] ()", "module": "test", - "msecs": 74.00298118591309, + "msecs": 697.7386474609375, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1708.0154418945312, + "relativeCreated": 1688.692569732666, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { @@ -11661,8 +13010,8 @@ "2", "" ], - "asctime": "2019-12-27 08:39:31,074", - "created": 1577432371.0741384, + "asctime": "2020-06-16 09:01:53,697", + "created": 1592290913.6977763, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -11672,15 +13021,15 @@ "lineno": 22, "message": "Result (Submitted value number 1): 2 ()", "module": "test", - "msecs": 74.13840293884277, + "msecs": 697.7763175964355, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1708.150863647461, + "relativeCreated": 1688.730239868164, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { @@ -11689,8 +13038,8 @@ "2", "" ], - "asctime": "2019-12-27 08:39:31,074", - "created": 1577432371.0742576, + "asctime": "2020-06-16 09:01:53,697", + "created": 1592290913.6978092, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -11700,15 +13049,15 @@ "lineno": 26, "message": "Expectation (Submitted value number 1): result = 2 ()", "module": "test", - "msecs": 74.25761222839355, + "msecs": 697.8092193603516, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1708.2700729370117, + "relativeCreated": 1688.76314163208, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { @@ -11716,8 +13065,8 @@ "2", "" ], - "asctime": "2019-12-27 08:39:31,074", - "created": 1577432371.0743804, + "asctime": "2020-06-16 09:01:53,697", + "created": 1592290913.6978412, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -11727,41 +13076,41 @@ "lineno": 142, "message": "Submitted value number 1 is correct (Content 2 and Type is ).", "module": "test", - "msecs": 74.38039779663086, + "msecs": 697.8411674499512, "msg": "Submitted value number 1 is correct (Content %s and Type is %s).", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1708.392858505249, + "relativeCreated": 1688.7950897216797, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" } ], - "msecs": 74.51462745666504, + "msecs": 697.8724002838135, "msg": "Execution of state machine callback (2) (state_b, condition_a) identified by a sequence number: Values and number of submitted values is correct. See detailed log for more information.", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1708.5270881652832, + "relativeCreated": 1688.826322555542, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread", - "time_consumption": 0.0001342296600341797 + "time_consumption": 3.123283386230469e-05 } ], - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread", - "time_consumption": 0.004776716232299805, - "time_finished": "2019-12-27 08:39:31,074", - "time_start": "2019-12-27 08:39:31,069" + "time_consumption": 0.0013723373413085938, + "time_finished": "2020-06-16 09:01:53,697", + "time_start": "2020-06-16 09:01:53,696" }, "_YrdgQHbUEemIm_1APUisDQ": { "args": null, - "asctime": "2019-12-27 08:39:31,074", - "created": 1577432371.0748174, + "asctime": "2020-06-16 09:01:53,697", + "created": 1592290913.6979594, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -11772,19 +13121,19 @@ "message": "_YrdgQHbUEemIm_1APUisDQ", "module": "__init__", "moduleLogger": [], - "msecs": 74.81741905212402, + "msecs": 697.9594230651855, "msg": "_YrdgQHbUEemIm_1APUisDQ", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/__init__.py", - "process": 8624, + "pathname": "/user_data/data/dirk/prj/unittest/state_machine/unittest/src/tests/__init__.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1708.8298797607422, + "relativeCreated": 1688.913345336914, "stack_info": null, "testcaseLogger": [ { "args": [], - "asctime": "2019-12-27 08:39:31,077", - "created": 1577432371.0770817, + "asctime": "2020-06-16 09:01:53,698", + "created": 1592290913.6987424, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", @@ -11802,34 +13151,34 @@ "None", "'state_a'" ], - "asctime": "2019-12-27 08:39:31,075", - "created": 1577432371.0750227, + "asctime": "2020-06-16 09:01:53,698", + "created": 1592290913.698018, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__set_state__", "levelname": "DEBUG", "levelno": 10, - "lineno": 174, + "lineno": 176, "message": "StateMachine: State change ('__init__'): None -> 'state_a'", "module": "__init__", - "msecs": 75.02269744873047, + "msecs": 698.0180740356445, "msg": "%s State change (%s): %s -> %s", "name": "STATE_MACHINE", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/state_machine/__init__.py", - "process": 8624, + "pathname": "src/state_machine/__init__.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1709.0351581573486, + "relativeCreated": 1688.971996307373, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { "args": [ 1 ], - "asctime": "2019-12-27 08:39:31,075", - "created": 1577432371.075228, + "asctime": "2020-06-16 09:01:53,698", + "created": 1592290913.6980727, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", @@ -11839,15 +13188,15 @@ "lineno": 55, "message": "Increasing sequence number to 1 caused by sequence progress", "module": "test_callbacks", - "msecs": 75.22797584533691, + "msecs": 698.0726718902588, "msg": "Increasing sequence number to %d caused by sequence progress", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_callbacks.py", - "process": 8624, + "pathname": "src/tests/test_callbacks.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1709.240436553955, + "relativeCreated": 1689.0265941619873, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { @@ -11857,34 +13206,34 @@ "'state_a'", "'state_b'" ], - "asctime": "2019-12-27 08:39:31,075", - "created": 1577432371.075445, + "asctime": "2020-06-16 09:01:53,698", + "created": 1592290913.698128, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__set_state__", "levelname": "DEBUG", "levelno": 10, - "lineno": 174, + "lineno": 176, "message": "StateMachine: State change ('condition_a'): 'state_a' -> 'state_b'", "module": "__init__", - "msecs": 75.44493675231934, + "msecs": 698.1279850006104, "msg": "%s State change (%s): %s -> %s", "name": "STATE_MACHINE", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/state_machine/__init__.py", - "process": 8624, + "pathname": "src/state_machine/__init__.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1709.4573974609375, + "relativeCreated": 1689.0819072723389, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { "args": [ 2 ], - "asctime": "2019-12-27 08:39:31,075", - "created": 1577432371.0756001, + "asctime": "2020-06-16 09:01:53,698", + "created": 1592290913.69817, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", @@ -11894,15 +13243,15 @@ "lineno": 55, "message": "Increasing sequence number to 2 caused by sequence progress", "module": "test_callbacks", - "msecs": 75.60014724731445, + "msecs": 698.1699466705322, "msg": "Increasing sequence number to %d caused by sequence progress", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_callbacks.py", - "process": 8624, + "pathname": "src/tests/test_callbacks.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1709.6126079559326, + "relativeCreated": 1689.1238689422607, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { @@ -11912,34 +13261,62 @@ "'state_b'", "'state_a'" ], - "asctime": "2019-12-27 08:39:31,075", - "created": 1577432371.0757782, + "asctime": "2020-06-16 09:01:53,698", + "created": 1592290913.6982183, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__set_state__", "levelname": "DEBUG", "levelno": 10, - "lineno": 174, + "lineno": 176, "message": "StateMachine: State change ('condition_b'): 'state_b' -> 'state_a'", "module": "__init__", - "msecs": 75.77824592590332, + "msecs": 698.2183456420898, "msg": "%s State change (%s): %s -> %s", "name": "STATE_MACHINE", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/state_machine/__init__.py", - "process": 8624, + "pathname": "src/state_machine/__init__.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1709.7907066345215, + "relativeCreated": 1689.1722679138184, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, + "threadName": "MainThread" + }, + { + "args": [ + 0, + "tests.test_callbacks", + "exec_with_counter" + ], + "asctime": "2020-06-16 09:01:53,698", + "created": 1592290913.6982572, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__set_state__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 195, + "message": "Executing callback 0 - tests.test_callbacks.exec_with_counter", + "module": "__init__", + "msecs": 698.2572078704834, + "msg": "Executing callback %d - %s.%s", + "name": "STATE_MACHINE", + "pathname": "src/state_machine/__init__.py", + "process": 11805, + "processName": "MainProcess", + "relativeCreated": 1689.211130142212, + "stack_info": null, + "thread": 140551289812800, "threadName": "MainThread" }, { "args": [ 3 ], - "asctime": "2019-12-27 08:39:31,075", - "created": 1577432371.0759184, + "asctime": "2020-06-16 09:01:53,698", + "created": 1592290913.6982932, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", @@ -11949,23 +13326,51 @@ "lineno": 24, "message": "Increasing sequence number to 3 caused by callback_execution", "module": "test_callbacks", - "msecs": 75.91843605041504, + "msecs": 698.2932090759277, "msg": "Increasing sequence number to %d caused by callback_execution", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_callbacks.py", - "process": 8624, + "pathname": "src/tests/test_callbacks.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1709.9308967590332, + "relativeCreated": 1689.2471313476562, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, + "threadName": "MainThread" + }, + { + "args": [ + 1, + "tests.test_callbacks", + "exec_with_counter" + ], + "asctime": "2020-06-16 09:01:53,698", + "created": 1592290913.6983285, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__set_state__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 195, + "message": "Executing callback 1 - tests.test_callbacks.exec_with_counter", + "module": "__init__", + "msecs": 698.3284950256348, + "msg": "Executing callback %d - %s.%s", + "name": "STATE_MACHINE", + "pathname": "src/state_machine/__init__.py", + "process": 11805, + "processName": "MainProcess", + "relativeCreated": 1689.2824172973633, + "stack_info": null, + "thread": 140551289812800, "threadName": "MainThread" }, { "args": [ 4 ], - "asctime": "2019-12-27 08:39:31,076", - "created": 1577432371.0760555, + "asctime": "2020-06-16 09:01:53,698", + "created": 1592290913.6983628, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", @@ -11975,23 +13380,23 @@ "lineno": 24, "message": "Increasing sequence number to 4 caused by callback_execution", "module": "test_callbacks", - "msecs": 76.05552673339844, + "msecs": 698.3628273010254, "msg": "Increasing sequence number to %d caused by callback_execution", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_callbacks.py", - "process": 8624, + "pathname": "src/tests/test_callbacks.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1710.0679874420166, + "relativeCreated": 1689.316749572754, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { "args": [ 5 ], - "asctime": "2019-12-27 08:39:31,076", - "created": 1577432371.0761917, + "asctime": "2020-06-16 09:01:53,698", + "created": 1592290913.698401, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", @@ -12001,15 +13406,15 @@ "lineno": 55, "message": "Increasing sequence number to 5 caused by sequence progress", "module": "test_callbacks", - "msecs": 76.19166374206543, + "msecs": 698.4009742736816, "msg": "Increasing sequence number to %d caused by sequence progress", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_callbacks.py", - "process": 8624, + "pathname": "src/tests/test_callbacks.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1710.2041244506836, + "relativeCreated": 1689.3548965454102, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { @@ -12019,34 +13424,62 @@ "'state_a'", "'state_b'" ], - "asctime": "2019-12-27 08:39:31,076", - "created": 1577432371.0763571, + "asctime": "2020-06-16 09:01:53,698", + "created": 1592290913.6984458, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__set_state__", "levelname": "DEBUG", "levelno": 10, - "lineno": 174, + "lineno": 176, "message": "StateMachine: State change ('condition_b'): 'state_a' -> 'state_b'", "module": "__init__", - "msecs": 76.35712623596191, + "msecs": 698.4457969665527, "msg": "%s State change (%s): %s -> %s", "name": "STATE_MACHINE", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/state_machine/__init__.py", - "process": 8624, + "pathname": "src/state_machine/__init__.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1710.36958694458, + "relativeCreated": 1689.3997192382812, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, + "threadName": "MainThread" + }, + { + "args": [ + 0, + "tests.test_callbacks", + "exec_with_counter" + ], + "asctime": "2020-06-16 09:01:53,698", + "created": 1592290913.6984835, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__set_state__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 195, + "message": "Executing callback 0 - tests.test_callbacks.exec_with_counter", + "module": "__init__", + "msecs": 698.4834671020508, + "msg": "Executing callback %d - %s.%s", + "name": "STATE_MACHINE", + "pathname": "src/state_machine/__init__.py", + "process": 11805, + "processName": "MainProcess", + "relativeCreated": 1689.4373893737793, + "stack_info": null, + "thread": 140551289812800, "threadName": "MainThread" }, { "args": [ 6 ], - "asctime": "2019-12-27 08:39:31,076", - "created": 1577432371.076504, + "asctime": "2020-06-16 09:01:53,698", + "created": 1592290913.698516, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", @@ -12056,23 +13489,51 @@ "lineno": 24, "message": "Increasing sequence number to 6 caused by callback_execution", "module": "test_callbacks", - "msecs": 76.50399208068848, + "msecs": 698.5158920288086, "msg": "Increasing sequence number to %d caused by callback_execution", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_callbacks.py", - "process": 8624, + "pathname": "src/tests/test_callbacks.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1710.5164527893066, + "relativeCreated": 1689.469814300537, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, + "threadName": "MainThread" + }, + { + "args": [ + 1, + "tests.test_callbacks", + "exec_with_counter" + ], + "asctime": "2020-06-16 09:01:53,698", + "created": 1592290913.6985505, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__set_state__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 195, + "message": "Executing callback 1 - tests.test_callbacks.exec_with_counter", + "module": "__init__", + "msecs": 698.5504627227783, + "msg": "Executing callback %d - %s.%s", + "name": "STATE_MACHINE", + "pathname": "src/state_machine/__init__.py", + "process": 11805, + "processName": "MainProcess", + "relativeCreated": 1689.5043849945068, + "stack_info": null, + "thread": 140551289812800, "threadName": "MainThread" }, { "args": [ 7 ], - "asctime": "2019-12-27 08:39:31,076", - "created": 1577432371.0766468, + "asctime": "2020-06-16 09:01:53,698", + "created": 1592290913.69862, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", @@ -12082,23 +13543,23 @@ "lineno": 24, "message": "Increasing sequence number to 7 caused by callback_execution", "module": "test_callbacks", - "msecs": 76.64680480957031, + "msecs": 698.620080947876, "msg": "Increasing sequence number to %d caused by callback_execution", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_callbacks.py", - "process": 8624, + "pathname": "src/tests/test_callbacks.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1710.6592655181885, + "relativeCreated": 1689.5740032196045, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { "args": [ 8 ], - "asctime": "2019-12-27 08:39:31,076", - "created": 1577432371.076783, + "asctime": "2020-06-16 09:01:53,698", + "created": 1592290913.6986582, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", @@ -12108,15 +13569,15 @@ "lineno": 55, "message": "Increasing sequence number to 8 caused by sequence progress", "module": "test_callbacks", - "msecs": 76.7829418182373, + "msecs": 698.6582279205322, "msg": "Increasing sequence number to %d caused by sequence progress", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_callbacks.py", - "process": 8624, + "pathname": "src/tests/test_callbacks.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1710.7954025268555, + "relativeCreated": 1689.6121501922607, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { @@ -12126,45 +13587,45 @@ "'state_b'", "'state_c'" ], - "asctime": "2019-12-27 08:39:31,076", - "created": 1577432371.0769446, + "asctime": "2020-06-16 09:01:53,698", + "created": 1592290913.6987028, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__set_state__", "levelname": "DEBUG", "levelno": 10, - "lineno": 174, + "lineno": 176, "message": "StateMachine: State change ('condition_c'): 'state_b' -> 'state_c'", "module": "__init__", - "msecs": 76.94458961486816, + "msecs": 698.7028121948242, "msg": "%s State change (%s): %s -> %s", "name": "STATE_MACHINE", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/state_machine/__init__.py", - "process": 8624, + "pathname": "src/state_machine/__init__.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1710.9570503234863, + "relativeCreated": 1689.6567344665527, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" } ], - "msecs": 77.08168029785156, + "msecs": 698.7423896789551, "msg": "Running state machine sequence and storing sequence number for each callback", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_callbacks.py", - "process": 8624, + "pathname": "src/tests/test_callbacks.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1711.0941410064697, + "relativeCreated": 1689.6963119506836, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread", - "time_consumption": 0.00013709068298339844 + "time_consumption": 3.9577484130859375e-05 }, { "args": [], - "asctime": "2019-12-27 08:39:31,077", - "created": 1577432371.0777125, + "asctime": "2020-06-16 09:01:53,699", + "created": 1592290913.6990852, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -12181,8 +13642,8 @@ "[ 2, 5 ]", "" ], - "asctime": "2019-12-27 08:39:31,077", - "created": 1577432371.0772836, + "asctime": "2020-06-16 09:01:53,698", + "created": 1592290913.6988058, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -12192,15 +13653,15 @@ "lineno": 22, "message": "Result (Execution of state machine callback (1) (all_transitions, condition_b) identified by a sequence number): [ 2, 5 ] ()", "module": "test", - "msecs": 77.28362083435059, + "msecs": 698.8058090209961, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1711.2960815429688, + "relativeCreated": 1689.7597312927246, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { @@ -12209,8 +13670,8 @@ "[ 2, 5 ]", "" ], - "asctime": "2019-12-27 08:39:31,077", - "created": 1577432371.0774257, + "asctime": "2020-06-16 09:01:53,698", + "created": 1592290913.698844, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -12220,15 +13681,15 @@ "lineno": 26, "message": "Expectation (Execution of state machine callback (1) (all_transitions, condition_b) identified by a sequence number): result = [ 2, 5 ] ()", "module": "test", - "msecs": 77.42571830749512, + "msecs": 698.8439559936523, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1711.4381790161133, + "relativeCreated": 1689.7978782653809, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { @@ -12237,8 +13698,8 @@ "2", "" ], - "asctime": "2019-12-27 08:39:31,077", - "created": 1577432371.077471, + "asctime": "2020-06-16 09:01:53,698", + "created": 1592290913.6988866, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -12248,15 +13709,15 @@ "lineno": 22, "message": "Result (Submitted value number 1): 2 ()", "module": "test", - "msecs": 77.47101783752441, + "msecs": 698.8866329193115, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1711.4834785461426, + "relativeCreated": 1689.84055519104, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { @@ -12265,8 +13726,8 @@ "2", "" ], - "asctime": "2019-12-27 08:39:31,077", - "created": 1577432371.0775104, + "asctime": "2020-06-16 09:01:53,698", + "created": 1592290913.698922, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -12276,15 +13737,15 @@ "lineno": 26, "message": "Expectation (Submitted value number 1): result = 2 ()", "module": "test", - "msecs": 77.51035690307617, + "msecs": 698.9219188690186, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1711.5228176116943, + "relativeCreated": 1689.875841140747, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { @@ -12292,8 +13753,8 @@ "2", "" ], - "asctime": "2019-12-27 08:39:31,077", - "created": 1577432371.0775504, + "asctime": "2020-06-16 09:01:53,698", + "created": 1592290913.698956, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -12303,15 +13764,15 @@ "lineno": 142, "message": "Submitted value number 1 is correct (Content 2 and Type is ).", "module": "test", - "msecs": 77.55041122436523, + "msecs": 698.9560127258301, "msg": "Submitted value number 1 is correct (Content %s and Type is %s).", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1711.5628719329834, + "relativeCreated": 1689.9099349975586, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { @@ -12320,8 +13781,8 @@ "5", "" ], - "asctime": "2019-12-27 08:39:31,077", - "created": 1577432371.0775907, + "asctime": "2020-06-16 09:01:53,698", + "created": 1592290913.6989903, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -12331,15 +13792,15 @@ "lineno": 22, "message": "Result (Submitted value number 2): 5 ()", "module": "test", - "msecs": 77.5907039642334, + "msecs": 698.9903450012207, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1711.6031646728516, + "relativeCreated": 1689.9442672729492, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { @@ -12348,8 +13809,8 @@ "5", "" ], - "asctime": "2019-12-27 08:39:31,077", - "created": 1577432371.0776289, + "asctime": "2020-06-16 09:01:53,699", + "created": 1592290913.699022, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -12359,15 +13820,15 @@ "lineno": 26, "message": "Expectation (Submitted value number 2): result = 5 ()", "module": "test", - "msecs": 77.62885093688965, + "msecs": 699.0220546722412, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1711.6413116455078, + "relativeCreated": 1689.9759769439697, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { @@ -12375,8 +13836,8 @@ "5", "" ], - "asctime": "2019-12-27 08:39:31,077", - "created": 1577432371.077672, + "asctime": "2020-06-16 09:01:53,699", + "created": 1592290913.6990545, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -12386,34 +13847,34 @@ "lineno": 142, "message": "Submitted value number 2 is correct (Content 5 and Type is ).", "module": "test", - "msecs": 77.67200469970703, + "msecs": 699.054479598999, "msg": "Submitted value number 2 is correct (Content %s and Type is %s).", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1711.6844654083252, + "relativeCreated": 1690.0084018707275, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" } ], - "msecs": 77.7125358581543, + "msecs": 699.0852355957031, "msg": "Execution of state machine callback (1) (all_transitions, condition_b) identified by a sequence number: Values and number of submitted values is correct. See detailed log for more information.", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1711.7249965667725, + "relativeCreated": 1690.0391578674316, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread", - "time_consumption": 4.0531158447265625e-05 + "time_consumption": 3.075599670410156e-05 }, { "args": [], - "asctime": "2019-12-27 08:39:31,078", - "created": 1577432371.0780897, + "asctime": "2020-06-16 09:01:53,699", + "created": 1592290913.6994245, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -12430,8 +13891,8 @@ "[ 3, 6 ]", "" ], - "asctime": "2019-12-27 08:39:31,077", - "created": 1577432371.077773, + "asctime": "2020-06-16 09:01:53,699", + "created": 1592290913.6991382, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -12441,15 +13902,15 @@ "lineno": 22, "message": "Result (Execution of state machine callback (2) (all_transitions, condition_b) identified by a sequence number): [ 3, 6 ] ()", "module": "test", - "msecs": 77.7730941772461, + "msecs": 699.1381645202637, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1711.7855548858643, + "relativeCreated": 1690.0920867919922, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { @@ -12458,8 +13919,8 @@ "[ 3, 6 ]", "" ], - "asctime": "2019-12-27 08:39:31,077", - "created": 1577432371.077818, + "asctime": "2020-06-16 09:01:53,699", + "created": 1592290913.6991765, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -12469,15 +13930,15 @@ "lineno": 26, "message": "Expectation (Execution of state machine callback (2) (all_transitions, condition_b) identified by a sequence number): result = [ 3, 6 ] ()", "module": "test", - "msecs": 77.81791687011719, + "msecs": 699.176549911499, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1711.8303775787354, + "relativeCreated": 1690.1304721832275, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { @@ -12486,8 +13947,8 @@ "3", "" ], - "asctime": "2019-12-27 08:39:31,077", - "created": 1577432371.07786, + "asctime": "2020-06-16 09:01:53,699", + "created": 1592290913.6992147, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -12497,15 +13958,15 @@ "lineno": 22, "message": "Result (Submitted value number 1): 3 ()", "module": "test", - "msecs": 77.86011695861816, + "msecs": 699.2146968841553, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1711.8725776672363, + "relativeCreated": 1690.1686191558838, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { @@ -12514,8 +13975,8 @@ "3", "" ], - "asctime": "2019-12-27 08:39:31,077", - "created": 1577432371.0778985, + "asctime": "2020-06-16 09:01:53,699", + "created": 1592290913.6992495, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -12525,15 +13986,15 @@ "lineno": 26, "message": "Expectation (Submitted value number 1): result = 3 ()", "module": "test", - "msecs": 77.89850234985352, + "msecs": 699.2495059967041, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1711.9109630584717, + "relativeCreated": 1690.2034282684326, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { @@ -12541,8 +14002,8 @@ "3", "" ], - "asctime": "2019-12-27 08:39:31,077", - "created": 1577432371.0779374, + "asctime": "2020-06-16 09:01:53,699", + "created": 1592290913.6992822, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -12552,15 +14013,15 @@ "lineno": 142, "message": "Submitted value number 1 is correct (Content 3 and Type is ).", "module": "test", - "msecs": 77.93736457824707, + "msecs": 699.282169342041, "msg": "Submitted value number 1 is correct (Content %s and Type is %s).", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1711.9498252868652, + "relativeCreated": 1690.2360916137695, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { @@ -12569,8 +14030,8 @@ "6", "" ], - "asctime": "2019-12-27 08:39:31,077", - "created": 1577432371.0779774, + "asctime": "2020-06-16 09:01:53,699", + "created": 1592290913.6993265, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -12580,15 +14041,15 @@ "lineno": 22, "message": "Result (Submitted value number 2): 6 ()", "module": "test", - "msecs": 77.97741889953613, + "msecs": 699.3265151977539, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1711.9898796081543, + "relativeCreated": 1690.2804374694824, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { @@ -12597,8 +14058,8 @@ "6", "" ], - "asctime": "2019-12-27 08:39:31,078", - "created": 1577432371.0780146, + "asctime": "2020-06-16 09:01:53,699", + "created": 1592290913.6993582, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -12608,15 +14069,15 @@ "lineno": 26, "message": "Expectation (Submitted value number 2): result = 6 ()", "module": "test", - "msecs": 78.01461219787598, + "msecs": 699.3582248687744, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1712.0270729064941, + "relativeCreated": 1690.312147140503, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { @@ -12624,8 +14085,8 @@ "6", "" ], - "asctime": "2019-12-27 08:39:31,078", - "created": 1577432371.0780523, + "asctime": "2020-06-16 09:01:53,699", + "created": 1592290913.6993928, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -12635,41 +14096,41 @@ "lineno": 142, "message": "Submitted value number 2 is correct (Content 6 and Type is ).", "module": "test", - "msecs": 78.05228233337402, + "msecs": 699.3927955627441, "msg": "Submitted value number 2 is correct (Content %s and Type is %s).", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1712.0647430419922, + "relativeCreated": 1690.3467178344727, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" } ], - "msecs": 78.08971405029297, + "msecs": 699.4245052337646, "msg": "Execution of state machine callback (2) (all_transitions, condition_b) identified by a sequence number: Values and number of submitted values is correct. See detailed log for more information.", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1712.1021747589111, + "relativeCreated": 1690.3784275054932, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread", - "time_consumption": 3.743171691894531e-05 + "time_consumption": 3.170967102050781e-05 } ], - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread", - "time_consumption": 0.0032722949981689453, - "time_finished": "2019-12-27 08:39:31,078", - "time_start": "2019-12-27 08:39:31,074" + "time_consumption": 0.0014650821685791016, + "time_finished": "2020-06-16 09:01:53,699", + "time_start": "2020-06-16 09:01:53,697" }, "_bDqbMHcrEemrUqotql_Blw": { "args": null, - "asctime": "2019-12-27 08:39:29,428", - "created": 1577432369.428712, + "asctime": "2020-06-16 09:01:52,066", + "created": 1592290912.0664089, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -12680,19 +14141,19 @@ "message": "_bDqbMHcrEemrUqotql_Blw", "module": "__init__", "moduleLogger": [], - "msecs": 428.7118911743164, + "msecs": 66.40887260437012, "msg": "_bDqbMHcrEemrUqotql_Blw", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/__init__.py", - "process": 8624, + "pathname": "/user_data/data/dirk/prj/unittest/state_machine/unittest/src/tests/__init__.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 62.72435188293457, + "relativeCreated": 57.36279487609863, "stack_info": null, "testcaseLogger": [ { "args": [], - "asctime": "2019-12-27 08:39:29,428", - "created": 1577432369.4288065, + "asctime": "2020-06-16 09:01:52,066", + "created": 1592290912.0665073, "exc_info": null, "exc_text": null, "filename": "test_init.py", @@ -12710,48 +14171,48 @@ "None", "'state_c'" ], - "asctime": "2019-12-27 08:39:29,428", - "created": 1577432369.4287667, + "asctime": "2020-06-16 09:01:52,066", + "created": 1592290912.0664654, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__set_state__", "levelname": "DEBUG", "levelno": 10, - "lineno": 174, + "lineno": 176, "message": "StateMachine: State change ('__init__'): None -> 'state_c'", "module": "__init__", - "msecs": 428.76672744750977, + "msecs": 66.46537780761719, "msg": "%s State change (%s): %s -> %s", "name": "STATE_MACHINE", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/state_machine/__init__.py", - "process": 8624, + "pathname": "src/state_machine/__init__.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 62.77918815612793, + "relativeCreated": 57.4193000793457, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" } ], - "msecs": 428.8065433502197, + "msecs": 66.50733947753906, "msg": "Initialising the state machine with state_c", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_init.py", - "process": 8624, + "pathname": "src/tests/test_init.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 62.81900405883789, + "relativeCreated": 57.46126174926758, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread", - "time_consumption": 3.981590270996094e-05 + "time_consumption": 4.1961669921875e-05 }, { "args": [ "None", "" ], - "asctime": "2019-12-27 08:39:29,428", - "created": 1577432369.4289205, + "asctime": "2020-06-16 09:01:52,066", + "created": 1592290912.0666707, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -12768,8 +14229,8 @@ "None", "" ], - "asctime": "2019-12-27 08:39:29,428", - "created": 1577432369.4288516, + "asctime": "2020-06-16 09:01:52,066", + "created": 1592290912.0665565, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -12779,15 +14240,15 @@ "lineno": 22, "message": "Result (Last state after initialisation): None ()", "module": "test", - "msecs": 428.8516044616699, + "msecs": 66.55645370483398, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 62.864065170288086, + "relativeCreated": 57.5103759765625, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { @@ -12796,8 +14257,8 @@ "None", "" ], - "asctime": "2019-12-27 08:39:29,428", - "created": 1577432369.4288864, + "asctime": "2020-06-16 09:01:52,066", + "created": 1592290912.0666354, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -12807,41 +14268,41 @@ "lineno": 26, "message": "Expectation (Last state after initialisation): result = None ()", "module": "test", - "msecs": 428.88641357421875, + "msecs": 66.6353702545166, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 62.898874282836914, + "relativeCreated": 57.58929252624512, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" } ], - "msecs": 428.9205074310303, + "msecs": 66.67065620422363, "msg": "Last state after initialisation is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 62.93296813964844, + "relativeCreated": 57.62457847595215, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread", - "time_consumption": 3.409385681152344e-05 + "time_consumption": 3.528594970703125e-05 } ], - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread", - "time_consumption": 0.0002086162567138672, - "time_finished": "2019-12-27 08:39:29,428", - "time_start": "2019-12-27 08:39:29,428" + "time_consumption": 0.0002617835998535156, + "time_finished": "2020-06-16 09:01:52,066", + "time_start": "2020-06-16 09:01:52,066" }, "_b_t78Hb4EemzkK7kGUMNfw": { "args": null, - "asctime": "2019-12-27 08:39:31,078", - "created": 1577432371.0781896, + "asctime": "2020-06-16 09:01:53,699", + "created": 1592290913.6995127, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -12852,19 +14313,19 @@ "message": "_b_t78Hb4EemzkK7kGUMNfw", "module": "__init__", "moduleLogger": [], - "msecs": 78.18961143493652, + "msecs": 699.5127201080322, "msg": "_b_t78Hb4EemzkK7kGUMNfw", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/__init__.py", - "process": 8624, + "pathname": "/user_data/data/dirk/prj/unittest/state_machine/unittest/src/tests/__init__.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1712.2020721435547, + "relativeCreated": 1690.4666423797607, "stack_info": null, "testcaseLogger": [ { "args": [], - "asctime": "2019-12-27 08:39:31,078", - "created": 1577432371.0789227, + "asctime": "2020-06-16 09:01:53,700", + "created": 1592290913.7002606, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", @@ -12882,34 +14343,34 @@ "None", "'state_a'" ], - "asctime": "2019-12-27 08:39:31,078", - "created": 1577432371.0782554, + "asctime": "2020-06-16 09:01:53,699", + "created": 1592290913.6995707, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__set_state__", "levelname": "DEBUG", "levelno": 10, - "lineno": 174, + "lineno": 176, "message": "StateMachine: State change ('__init__'): None -> 'state_a'", "module": "__init__", - "msecs": 78.25541496276855, + "msecs": 699.5706558227539, "msg": "%s State change (%s): %s -> %s", "name": "STATE_MACHINE", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/state_machine/__init__.py", - "process": 8624, + "pathname": "src/state_machine/__init__.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1712.2678756713867, + "relativeCreated": 1690.5245780944824, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { "args": [ 1 ], - "asctime": "2019-12-27 08:39:31,078", - "created": 1577432371.078321, + "asctime": "2020-06-16 09:01:53,699", + "created": 1592290913.6996245, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", @@ -12919,15 +14380,15 @@ "lineno": 55, "message": "Increasing sequence number to 1 caused by sequence progress", "module": "test_callbacks", - "msecs": 78.32098007202148, + "msecs": 699.6245384216309, "msg": "Increasing sequence number to %d caused by sequence progress", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_callbacks.py", - "process": 8624, + "pathname": "src/tests/test_callbacks.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1712.3334407806396, + "relativeCreated": 1690.5784606933594, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { @@ -12937,34 +14398,62 @@ "'state_a'", "'state_b'" ], - "asctime": "2019-12-27 08:39:31,078", - "created": 1577432371.0783873, + "asctime": "2020-06-16 09:01:53,699", + "created": 1592290913.6996794, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__set_state__", "levelname": "DEBUG", "levelno": 10, - "lineno": 174, + "lineno": 176, "message": "StateMachine: State change ('condition_a'): 'state_a' -> 'state_b'", "module": "__init__", - "msecs": 78.38726043701172, + "msecs": 699.6793746948242, "msg": "%s State change (%s): %s -> %s", "name": "STATE_MACHINE", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/state_machine/__init__.py", - "process": 8624, + "pathname": "src/state_machine/__init__.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1712.3997211456299, + "relativeCreated": 1690.6332969665527, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, + "threadName": "MainThread" + }, + { + "args": [ + 0, + "tests.test_callbacks", + "exec_with_counter" + ], + "asctime": "2020-06-16 09:01:53,699", + "created": 1592290913.69972, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__set_state__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 195, + "message": "Executing callback 0 - tests.test_callbacks.exec_with_counter", + "module": "__init__", + "msecs": 699.7199058532715, + "msg": "Executing callback %d - %s.%s", + "name": "STATE_MACHINE", + "pathname": "src/state_machine/__init__.py", + "process": 11805, + "processName": "MainProcess", + "relativeCreated": 1690.673828125, + "stack_info": null, + "thread": 140551289812800, "threadName": "MainThread" }, { "args": [ 2 ], - "asctime": "2019-12-27 08:39:31,078", - "created": 1577432371.078437, + "asctime": "2020-06-16 09:01:53,699", + "created": 1592290913.6997535, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", @@ -12974,23 +14463,51 @@ "lineno": 24, "message": "Increasing sequence number to 2 caused by callback_execution", "module": "test_callbacks", - "msecs": 78.43708992004395, + "msecs": 699.7535228729248, "msg": "Increasing sequence number to %d caused by callback_execution", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_callbacks.py", - "process": 8624, + "pathname": "src/tests/test_callbacks.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1712.449550628662, + "relativeCreated": 1690.7074451446533, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, + "threadName": "MainThread" + }, + { + "args": [ + 1, + "tests.test_callbacks", + "exec_with_counter" + ], + "asctime": "2020-06-16 09:01:53,699", + "created": 1592290913.69979, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__set_state__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 195, + "message": "Executing callback 1 - tests.test_callbacks.exec_with_counter", + "module": "__init__", + "msecs": 699.7900009155273, + "msg": "Executing callback %d - %s.%s", + "name": "STATE_MACHINE", + "pathname": "src/state_machine/__init__.py", + "process": 11805, + "processName": "MainProcess", + "relativeCreated": 1690.7439231872559, + "stack_info": null, + "thread": 140551289812800, "threadName": "MainThread" }, { "args": [ 3 ], - "asctime": "2019-12-27 08:39:31,078", - "created": 1577432371.0784826, + "asctime": "2020-06-16 09:01:53,699", + "created": 1592290913.6998227, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", @@ -13000,23 +14517,23 @@ "lineno": 24, "message": "Increasing sequence number to 3 caused by callback_execution", "module": "test_callbacks", - "msecs": 78.48262786865234, + "msecs": 699.8226642608643, "msg": "Increasing sequence number to %d caused by callback_execution", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_callbacks.py", - "process": 8624, + "pathname": "src/tests/test_callbacks.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1712.4950885772705, + "relativeCreated": 1690.7765865325928, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { "args": [ 4 ], - "asctime": "2019-12-27 08:39:31,078", - "created": 1577432371.07853, + "asctime": "2020-06-16 09:01:53,699", + "created": 1592290913.6998599, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", @@ -13026,15 +14543,15 @@ "lineno": 55, "message": "Increasing sequence number to 4 caused by sequence progress", "module": "test_callbacks", - "msecs": 78.53007316589355, + "msecs": 699.8598575592041, "msg": "Increasing sequence number to %d caused by sequence progress", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_callbacks.py", - "process": 8624, + "pathname": "src/tests/test_callbacks.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1712.5425338745117, + "relativeCreated": 1690.8137798309326, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { @@ -13044,34 +14561,34 @@ "'state_b'", "'state_a'" ], - "asctime": "2019-12-27 08:39:31,078", - "created": 1577432371.078586, + "asctime": "2020-06-16 09:01:53,699", + "created": 1592290913.699909, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__set_state__", "levelname": "DEBUG", "levelno": 10, - "lineno": 174, + "lineno": 176, "message": "StateMachine: State change ('condition_b'): 'state_b' -> 'state_a'", "module": "__init__", - "msecs": 78.58610153198242, + "msecs": 699.908971786499, "msg": "%s State change (%s): %s -> %s", "name": "STATE_MACHINE", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/state_machine/__init__.py", - "process": 8624, + "pathname": "src/state_machine/__init__.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1712.5985622406006, + "relativeCreated": 1690.8628940582275, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { "args": [ 5 ], - "asctime": "2019-12-27 08:39:31,078", - "created": 1577432371.078632, + "asctime": "2020-06-16 09:01:53,699", + "created": 1592290913.699949, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", @@ -13081,15 +14598,15 @@ "lineno": 55, "message": "Increasing sequence number to 5 caused by sequence progress", "module": "test_callbacks", - "msecs": 78.63211631774902, + "msecs": 699.9490261077881, "msg": "Increasing sequence number to %d caused by sequence progress", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_callbacks.py", - "process": 8624, + "pathname": "src/tests/test_callbacks.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1712.6445770263672, + "relativeCreated": 1690.9029483795166, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { @@ -13099,34 +14616,62 @@ "'state_a'", "'state_b'" ], - "asctime": "2019-12-27 08:39:31,078", - "created": 1577432371.0786858, + "asctime": "2020-06-16 09:01:53,699", + "created": 1592290913.6999938, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__set_state__", "levelname": "DEBUG", "levelno": 10, - "lineno": 174, + "lineno": 176, "message": "StateMachine: State change ('condition_b'): 'state_a' -> 'state_b'", "module": "__init__", - "msecs": 78.68576049804688, + "msecs": 699.9938488006592, "msg": "%s State change (%s): %s -> %s", "name": "STATE_MACHINE", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/state_machine/__init__.py", - "process": 8624, + "pathname": "src/state_machine/__init__.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1712.698221206665, + "relativeCreated": 1690.9477710723877, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, + "threadName": "MainThread" + }, + { + "args": [ + 0, + "tests.test_callbacks", + "exec_with_counter" + ], + "asctime": "2020-06-16 09:01:53,700", + "created": 1592290913.7000315, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__set_state__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 195, + "message": "Executing callback 0 - tests.test_callbacks.exec_with_counter", + "module": "__init__", + "msecs": 700.0315189361572, + "msg": "Executing callback %d - %s.%s", + "name": "STATE_MACHINE", + "pathname": "src/state_machine/__init__.py", + "process": 11805, + "processName": "MainProcess", + "relativeCreated": 1690.9854412078857, + "stack_info": null, + "thread": 140551289812800, "threadName": "MainThread" }, { "args": [ 6 ], - "asctime": "2019-12-27 08:39:31,078", - "created": 1577432371.078732, + "asctime": "2020-06-16 09:01:53,700", + "created": 1592290913.700064, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", @@ -13136,23 +14681,51 @@ "lineno": 24, "message": "Increasing sequence number to 6 caused by callback_execution", "module": "test_callbacks", - "msecs": 78.73201370239258, + "msecs": 700.063943862915, "msg": "Increasing sequence number to %d caused by callback_execution", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_callbacks.py", - "process": 8624, + "pathname": "src/tests/test_callbacks.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1712.7444744110107, + "relativeCreated": 1691.0178661346436, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, + "threadName": "MainThread" + }, + { + "args": [ + 1, + "tests.test_callbacks", + "exec_with_counter" + ], + "asctime": "2020-06-16 09:01:53,700", + "created": 1592290913.7001023, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__set_state__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 195, + "message": "Executing callback 1 - tests.test_callbacks.exec_with_counter", + "module": "__init__", + "msecs": 700.1023292541504, + "msg": "Executing callback %d - %s.%s", + "name": "STATE_MACHINE", + "pathname": "src/state_machine/__init__.py", + "process": 11805, + "processName": "MainProcess", + "relativeCreated": 1691.056251525879, + "stack_info": null, + "thread": 140551289812800, "threadName": "MainThread" }, { "args": [ 7 ], - "asctime": "2019-12-27 08:39:31,078", - "created": 1577432371.0787756, + "asctime": "2020-06-16 09:01:53,700", + "created": 1592290913.700134, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", @@ -13162,23 +14735,23 @@ "lineno": 24, "message": "Increasing sequence number to 7 caused by callback_execution", "module": "test_callbacks", - "msecs": 78.77564430236816, + "msecs": 700.1340389251709, "msg": "Increasing sequence number to %d caused by callback_execution", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_callbacks.py", - "process": 8624, + "pathname": "src/tests/test_callbacks.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1712.7881050109863, + "relativeCreated": 1691.0879611968994, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { "args": [ 8 ], - "asctime": "2019-12-27 08:39:31,078", - "created": 1577432371.0788205, + "asctime": "2020-06-16 09:01:53,700", + "created": 1592290913.7001712, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", @@ -13188,15 +14761,15 @@ "lineno": 55, "message": "Increasing sequence number to 8 caused by sequence progress", "module": "test_callbacks", - "msecs": 78.82046699523926, + "msecs": 700.1712322235107, "msg": "Increasing sequence number to %d caused by sequence progress", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_callbacks.py", - "process": 8624, + "pathname": "src/tests/test_callbacks.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1712.8329277038574, + "relativeCreated": 1691.1251544952393, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { @@ -13206,45 +14779,45 @@ "'state_b'", "'state_c'" ], - "asctime": "2019-12-27 08:39:31,078", - "created": 1577432371.0788772, + "asctime": "2020-06-16 09:01:53,700", + "created": 1592290913.7002196, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__set_state__", "levelname": "DEBUG", "levelno": 10, - "lineno": 174, + "lineno": 176, "message": "StateMachine: State change ('condition_c'): 'state_b' -> 'state_c'", "module": "__init__", - "msecs": 78.87721061706543, + "msecs": 700.2196311950684, "msg": "%s State change (%s): %s -> %s", "name": "STATE_MACHINE", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/state_machine/__init__.py", - "process": 8624, + "pathname": "src/state_machine/__init__.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1712.8896713256836, + "relativeCreated": 1691.1735534667969, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" } ], - "msecs": 78.92274856567383, + "msecs": 700.2606391906738, "msg": "Running state machine sequence and storing sequence number for each callback", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_callbacks.py", - "process": 8624, + "pathname": "src/tests/test_callbacks.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1712.935209274292, + "relativeCreated": 1691.2145614624023, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread", - "time_consumption": 4.553794860839844e-05 + "time_consumption": 4.100799560546875e-05 }, { "args": [], - "asctime": "2019-12-27 08:39:31,079", - "created": 1577432371.0792754, + "asctime": "2020-06-16 09:01:53,700", + "created": 1592290913.7006, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -13261,8 +14834,8 @@ "[ 1, 5 ]", "" ], - "asctime": "2019-12-27 08:39:31,078", - "created": 1577432371.0789926, + "asctime": "2020-06-16 09:01:53,700", + "created": 1592290913.7003202, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -13272,15 +14845,15 @@ "lineno": 22, "message": "Result (Execution of state machine callback (1) (state_b, all_conditions) identified by a sequence number): [ 1, 5 ] ()", "module": "test", - "msecs": 78.99260520935059, + "msecs": 700.3202438354492, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1713.0050659179688, + "relativeCreated": 1691.2741661071777, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { @@ -13289,8 +14862,8 @@ "[ 1, 5 ]", "" ], - "asctime": "2019-12-27 08:39:31,079", - "created": 1577432371.079033, + "asctime": "2020-06-16 09:01:53,700", + "created": 1592290913.7003589, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -13300,15 +14873,15 @@ "lineno": 26, "message": "Expectation (Execution of state machine callback (1) (state_b, all_conditions) identified by a sequence number): result = [ 1, 5 ] ()", "module": "test", - "msecs": 79.03289794921875, + "msecs": 700.3588676452637, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1713.045358657837, + "relativeCreated": 1691.3127899169922, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { @@ -13317,8 +14890,8 @@ "1", "" ], - "asctime": "2019-12-27 08:39:31,079", - "created": 1577432371.0790696, + "asctime": "2020-06-16 09:01:53,700", + "created": 1592290913.700398, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -13328,15 +14901,15 @@ "lineno": 22, "message": "Result (Submitted value number 1): 1 ()", "module": "test", - "msecs": 79.06961441040039, + "msecs": 700.3979682922363, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1713.0820751190186, + "relativeCreated": 1691.3518905639648, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { @@ -13345,8 +14918,8 @@ "1", "" ], - "asctime": "2019-12-27 08:39:31,079", - "created": 1577432371.0791054, + "asctime": "2020-06-16 09:01:53,700", + "created": 1592290913.7004313, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -13356,15 +14929,15 @@ "lineno": 26, "message": "Expectation (Submitted value number 1): result = 1 ()", "module": "test", - "msecs": 79.10537719726562, + "msecs": 700.4313468933105, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1713.1178379058838, + "relativeCreated": 1691.385269165039, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { @@ -13372,8 +14945,8 @@ "1", "" ], - "asctime": "2019-12-27 08:39:31,079", - "created": 1577432371.079139, + "asctime": "2020-06-16 09:01:53,700", + "created": 1592290913.7004693, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -13383,15 +14956,15 @@ "lineno": 142, "message": "Submitted value number 1 is correct (Content 1 and Type is ).", "module": "test", - "msecs": 79.13899421691895, + "msecs": 700.4692554473877, "msg": "Submitted value number 1 is correct (Content %s and Type is %s).", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1713.151454925537, + "relativeCreated": 1691.4231777191162, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { @@ -13400,8 +14973,8 @@ "5", "" ], - "asctime": "2019-12-27 08:39:31,079", - "created": 1577432371.0791752, + "asctime": "2020-06-16 09:01:53,700", + "created": 1592290913.700504, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -13411,15 +14984,15 @@ "lineno": 22, "message": "Result (Submitted value number 2): 5 ()", "module": "test", - "msecs": 79.17523384094238, + "msecs": 700.5040645599365, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1713.1876945495605, + "relativeCreated": 1691.457986831665, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { @@ -13428,8 +15001,8 @@ "5", "" ], - "asctime": "2019-12-27 08:39:31,079", - "created": 1577432371.0792093, + "asctime": "2020-06-16 09:01:53,700", + "created": 1592290913.7005363, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -13439,15 +15012,15 @@ "lineno": 26, "message": "Expectation (Submitted value number 2): result = 5 ()", "module": "test", - "msecs": 79.2093276977539, + "msecs": 700.5362510681152, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1713.221788406372, + "relativeCreated": 1691.4901733398438, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { @@ -13455,8 +15028,8 @@ "5", "" ], - "asctime": "2019-12-27 08:39:31,079", - "created": 1577432371.0792441, + "asctime": "2020-06-16 09:01:53,700", + "created": 1592290913.700569, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -13466,34 +15039,34 @@ "lineno": 142, "message": "Submitted value number 2 is correct (Content 5 and Type is ).", "module": "test", - "msecs": 79.24413681030273, + "msecs": 700.5689144134521, "msg": "Submitted value number 2 is correct (Content %s and Type is %s).", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1713.256597518921, + "relativeCreated": 1691.5228366851807, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" } ], - "msecs": 79.27536964416504, + "msecs": 700.5999088287354, "msg": "Execution of state machine callback (1) (state_b, all_conditions) identified by a sequence number: Values and number of submitted values is correct. See detailed log for more information.", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1713.2878303527832, + "relativeCreated": 1691.5538311004639, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread", - "time_consumption": 3.123283386230469e-05 + "time_consumption": 3.0994415283203125e-05 }, { "args": [], - "asctime": "2019-12-27 08:39:31,079", - "created": 1577432371.079586, + "asctime": "2020-06-16 09:01:53,700", + "created": 1592290913.7009234, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -13510,8 +15083,8 @@ "[ 2, 6 ]", "" ], - "asctime": "2019-12-27 08:39:31,079", - "created": 1577432371.0793242, + "asctime": "2020-06-16 09:01:53,700", + "created": 1592290913.700652, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -13521,15 +15094,15 @@ "lineno": 22, "message": "Result (Execution of state machine callback (2) (state_b, all_conditions) identified by a sequence number): [ 2, 6 ] ()", "module": "test", - "msecs": 79.32424545288086, + "msecs": 700.6518840789795, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1713.336706161499, + "relativeCreated": 1691.605806350708, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { @@ -13538,8 +15111,8 @@ "[ 2, 6 ]", "" ], - "asctime": "2019-12-27 08:39:31,079", - "created": 1577432371.0793598, + "asctime": "2020-06-16 09:01:53,700", + "created": 1592290913.7006881, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -13549,15 +15122,15 @@ "lineno": 26, "message": "Expectation (Execution of state machine callback (2) (state_b, all_conditions) identified by a sequence number): result = [ 2, 6 ] ()", "module": "test", - "msecs": 79.35976982116699, + "msecs": 700.6881237030029, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1713.3722305297852, + "relativeCreated": 1691.6420459747314, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { @@ -13566,8 +15139,8 @@ "2", "" ], - "asctime": "2019-12-27 08:39:31,079", - "created": 1577432371.079394, + "asctime": "2020-06-16 09:01:53,700", + "created": 1592290913.700723, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -13577,15 +15150,15 @@ "lineno": 22, "message": "Result (Submitted value number 1): 2 ()", "module": "test", - "msecs": 79.39410209655762, + "msecs": 700.7229328155518, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1713.4065628051758, + "relativeCreated": 1691.6768550872803, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { @@ -13594,8 +15167,8 @@ "2", "" ], - "asctime": "2019-12-27 08:39:31,079", - "created": 1577432371.079425, + "asctime": "2020-06-16 09:01:53,700", + "created": 1592290913.700755, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -13605,15 +15178,15 @@ "lineno": 26, "message": "Expectation (Submitted value number 1): result = 2 ()", "module": "test", - "msecs": 79.42509651184082, + "msecs": 700.7548809051514, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1713.437557220459, + "relativeCreated": 1691.7088031768799, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { @@ -13621,8 +15194,8 @@ "2", "" ], - "asctime": "2019-12-27 08:39:31,079", - "created": 1577432371.0794601, + "asctime": "2020-06-16 09:01:53,700", + "created": 1592290913.7007873, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -13632,15 +15205,15 @@ "lineno": 142, "message": "Submitted value number 1 is correct (Content 2 and Type is ).", "module": "test", - "msecs": 79.46014404296875, + "msecs": 700.7873058319092, "msg": "Submitted value number 1 is correct (Content %s and Type is %s).", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1713.472604751587, + "relativeCreated": 1691.7412281036377, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { @@ -13649,8 +15222,8 @@ "6", "" ], - "asctime": "2019-12-27 08:39:31,079", - "created": 1577432371.0794928, + "asctime": "2020-06-16 09:01:53,700", + "created": 1592290913.7008228, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -13660,15 +15233,15 @@ "lineno": 22, "message": "Result (Submitted value number 2): 6 ()", "module": "test", - "msecs": 79.49280738830566, + "msecs": 700.8228302001953, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1713.5052680969238, + "relativeCreated": 1691.7767524719238, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { @@ -13677,8 +15250,8 @@ "6", "" ], - "asctime": "2019-12-27 08:39:31,079", - "created": 1577432371.079524, + "asctime": "2020-06-16 09:01:53,700", + "created": 1592290913.7008567, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -13688,15 +15261,15 @@ "lineno": 26, "message": "Expectation (Submitted value number 2): result = 6 ()", "module": "test", - "msecs": 79.52404022216797, + "msecs": 700.8566856384277, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1713.5365009307861, + "relativeCreated": 1691.8106079101562, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { @@ -13704,8 +15277,8 @@ "6", "" ], - "asctime": "2019-12-27 08:39:31,079", - "created": 1577432371.0795557, + "asctime": "2020-06-16 09:01:53,700", + "created": 1592290913.7008917, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -13715,41 +15288,41 @@ "lineno": 142, "message": "Submitted value number 2 is correct (Content 6 and Type is ).", "module": "test", - "msecs": 79.55574989318848, + "msecs": 700.8917331695557, "msg": "Submitted value number 2 is correct (Content %s and Type is %s).", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1713.5682106018066, + "relativeCreated": 1691.8456554412842, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" } ], - "msecs": 79.58602905273438, + "msecs": 700.9234428405762, "msg": "Execution of state machine callback (2) (state_b, all_conditions) identified by a sequence number: Values and number of submitted values is correct. See detailed log for more information.", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1713.5984897613525, + "relativeCreated": 1691.8773651123047, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread", - "time_consumption": 3.0279159545898438e-05 + "time_consumption": 3.170967102050781e-05 } ], - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread", - "time_consumption": 0.0013964176177978516, - "time_finished": "2019-12-27 08:39:31,079", - "time_start": "2019-12-27 08:39:31,078" + "time_consumption": 0.0014107227325439453, + "time_finished": "2020-06-16 09:01:53,700", + "time_start": "2020-06-16 09:01:53,699" }, "_e4QPUHb4EemzkK7kGUMNfw": { "args": null, - "asctime": "2019-12-27 08:39:31,079", - "created": 1577432371.0796647, + "asctime": "2020-06-16 09:01:53,701", + "created": 1592290913.7010074, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -13760,19 +15333,19 @@ "message": "_e4QPUHb4EemzkK7kGUMNfw", "module": "__init__", "moduleLogger": [], - "msecs": 79.66470718383789, + "msecs": 701.0073661804199, "msg": "_e4QPUHb4EemzkK7kGUMNfw", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/__init__.py", - "process": 8624, + "pathname": "/user_data/data/dirk/prj/unittest/state_machine/unittest/src/tests/__init__.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1713.677167892456, + "relativeCreated": 1691.9612884521484, "stack_info": null, "testcaseLogger": [ { "args": [], - "asctime": "2019-12-27 08:39:31,080", - "created": 1577432371.080398, + "asctime": "2020-06-16 09:01:53,702", + "created": 1592290913.7020197, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", @@ -13790,34 +15363,34 @@ "None", "'state_a'" ], - "asctime": "2019-12-27 08:39:31,079", - "created": 1577432371.0797205, + "asctime": "2020-06-16 09:01:53,701", + "created": 1592290913.701067, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__set_state__", "levelname": "DEBUG", "levelno": 10, - "lineno": 174, + "lineno": 176, "message": "StateMachine: State change ('__init__'): None -> 'state_a'", "module": "__init__", - "msecs": 79.72049713134766, + "msecs": 701.0669708251953, "msg": "%s State change (%s): %s -> %s", "name": "STATE_MACHINE", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/state_machine/__init__.py", - "process": 8624, + "pathname": "src/state_machine/__init__.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1713.7329578399658, + "relativeCreated": 1692.0208930969238, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { "args": [ 1 ], - "asctime": "2019-12-27 08:39:31,079", - "created": 1577432371.0797708, + "asctime": "2020-06-16 09:01:53,701", + "created": 1592290913.7011209, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", @@ -13827,15 +15400,15 @@ "lineno": 55, "message": "Increasing sequence number to 1 caused by sequence progress", "module": "test_callbacks", - "msecs": 79.77080345153809, + "msecs": 701.1208534240723, "msg": "Increasing sequence number to %d caused by sequence progress", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_callbacks.py", - "process": 8624, + "pathname": "src/tests/test_callbacks.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1713.7832641601562, + "relativeCreated": 1692.0747756958008, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { @@ -13845,34 +15418,62 @@ "'state_a'", "'state_b'" ], - "asctime": "2019-12-27 08:39:31,079", - "created": 1577432371.079825, + "asctime": "2020-06-16 09:01:53,701", + "created": 1592290913.7011755, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__set_state__", "levelname": "DEBUG", "levelno": 10, - "lineno": 174, + "lineno": 176, "message": "StateMachine: State change ('condition_a'): 'state_a' -> 'state_b'", "module": "__init__", - "msecs": 79.82492446899414, + "msecs": 701.1754512786865, "msg": "%s State change (%s): %s -> %s", "name": "STATE_MACHINE", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/state_machine/__init__.py", - "process": 8624, + "pathname": "src/state_machine/__init__.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1713.8373851776123, + "relativeCreated": 1692.129373550415, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, + "threadName": "MainThread" + }, + { + "args": [ + 0, + "tests.test_callbacks", + "exec_with_counter" + ], + "asctime": "2020-06-16 09:01:53,701", + "created": 1592290913.7012155, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__set_state__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 195, + "message": "Executing callback 0 - tests.test_callbacks.exec_with_counter", + "module": "__init__", + "msecs": 701.2155055999756, + "msg": "Executing callback %d - %s.%s", + "name": "STATE_MACHINE", + "pathname": "src/state_machine/__init__.py", + "process": 11805, + "processName": "MainProcess", + "relativeCreated": 1692.169427871704, + "stack_info": null, + "thread": 140551289812800, "threadName": "MainThread" }, { "args": [ 2 ], - "asctime": "2019-12-27 08:39:31,079", - "created": 1577432371.079862, + "asctime": "2020-06-16 09:01:53,701", + "created": 1592290913.701249, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", @@ -13882,23 +15483,51 @@ "lineno": 24, "message": "Increasing sequence number to 2 caused by callback_execution", "module": "test_callbacks", - "msecs": 79.86211776733398, + "msecs": 701.2488842010498, "msg": "Increasing sequence number to %d caused by callback_execution", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_callbacks.py", - "process": 8624, + "pathname": "src/tests/test_callbacks.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1713.8745784759521, + "relativeCreated": 1692.2028064727783, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, + "threadName": "MainThread" + }, + { + "args": [ + 1, + "tests.test_callbacks", + "exec_with_counter" + ], + "asctime": "2020-06-16 09:01:53,701", + "created": 1592290913.7012851, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__set_state__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 195, + "message": "Executing callback 1 - tests.test_callbacks.exec_with_counter", + "module": "__init__", + "msecs": 701.2851238250732, + "msg": "Executing callback %d - %s.%s", + "name": "STATE_MACHINE", + "pathname": "src/state_machine/__init__.py", + "process": 11805, + "processName": "MainProcess", + "relativeCreated": 1692.2390460968018, + "stack_info": null, + "thread": 140551289812800, "threadName": "MainThread" }, { "args": [ 3 ], - "asctime": "2019-12-27 08:39:31,079", - "created": 1577432371.0798988, + "asctime": "2020-06-16 09:01:53,701", + "created": 1592290913.7013168, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", @@ -13908,23 +15537,23 @@ "lineno": 24, "message": "Increasing sequence number to 3 caused by callback_execution", "module": "test_callbacks", - "msecs": 79.89883422851562, + "msecs": 701.3168334960938, "msg": "Increasing sequence number to %d caused by callback_execution", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_callbacks.py", - "process": 8624, + "pathname": "src/tests/test_callbacks.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1713.9112949371338, + "relativeCreated": 1692.2707557678223, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { "args": [ 4 ], - "asctime": "2019-12-27 08:39:31,079", - "created": 1577432371.0799377, + "asctime": "2020-06-16 09:01:53,701", + "created": 1592290913.701354, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", @@ -13934,15 +15563,15 @@ "lineno": 55, "message": "Increasing sequence number to 4 caused by sequence progress", "module": "test_callbacks", - "msecs": 79.93769645690918, + "msecs": 701.3540267944336, "msg": "Increasing sequence number to %d caused by sequence progress", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_callbacks.py", - "process": 8624, + "pathname": "src/tests/test_callbacks.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1713.9501571655273, + "relativeCreated": 1692.307949066162, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { @@ -13952,34 +15581,62 @@ "'state_b'", "'state_a'" ], - "asctime": "2019-12-27 08:39:31,079", - "created": 1577432371.079983, + "asctime": "2020-06-16 09:01:53,701", + "created": 1592290913.7013998, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__set_state__", "levelname": "DEBUG", "levelno": 10, - "lineno": 174, + "lineno": 176, "message": "StateMachine: State change ('condition_b'): 'state_b' -> 'state_a'", "module": "__init__", - "msecs": 79.98299598693848, + "msecs": 701.3998031616211, "msg": "%s State change (%s): %s -> %s", "name": "STATE_MACHINE", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/state_machine/__init__.py", - "process": 8624, + "pathname": "src/state_machine/__init__.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1713.9954566955566, + "relativeCreated": 1692.3537254333496, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, + "threadName": "MainThread" + }, + { + "args": [ + 0, + "tests.test_callbacks", + "exec_with_counter" + ], + "asctime": "2020-06-16 09:01:53,701", + "created": 1592290913.7014377, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__set_state__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 195, + "message": "Executing callback 0 - tests.test_callbacks.exec_with_counter", + "module": "__init__", + "msecs": 701.4377117156982, + "msg": "Executing callback %d - %s.%s", + "name": "STATE_MACHINE", + "pathname": "src/state_machine/__init__.py", + "process": 11805, + "processName": "MainProcess", + "relativeCreated": 1692.3916339874268, + "stack_info": null, + "thread": 140551289812800, "threadName": "MainThread" }, { "args": [ 5 ], - "asctime": "2019-12-27 08:39:31,080", - "created": 1577432371.0800183, + "asctime": "2020-06-16 09:01:53,701", + "created": 1592290913.7014725, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", @@ -13989,23 +15646,51 @@ "lineno": 24, "message": "Increasing sequence number to 5 caused by callback_execution", "module": "test_callbacks", - "msecs": 80.01828193664551, + "msecs": 701.4725208282471, "msg": "Increasing sequence number to %d caused by callback_execution", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_callbacks.py", - "process": 8624, + "pathname": "src/tests/test_callbacks.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1714.0307426452637, + "relativeCreated": 1692.4264430999756, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, + "threadName": "MainThread" + }, + { + "args": [ + 1, + "tests.test_callbacks", + "exec_with_counter" + ], + "asctime": "2020-06-16 09:01:53,701", + "created": 1592290913.7015097, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__set_state__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 195, + "message": "Executing callback 1 - tests.test_callbacks.exec_with_counter", + "module": "__init__", + "msecs": 701.5097141265869, + "msg": "Executing callback %d - %s.%s", + "name": "STATE_MACHINE", + "pathname": "src/state_machine/__init__.py", + "process": 11805, + "processName": "MainProcess", + "relativeCreated": 1692.4636363983154, + "stack_info": null, + "thread": 140551289812800, "threadName": "MainThread" }, { "args": [ 6 ], - "asctime": "2019-12-27 08:39:31,080", - "created": 1577432371.0800533, + "asctime": "2020-06-16 09:01:53,701", + "created": 1592290913.7015414, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", @@ -14015,23 +15700,23 @@ "lineno": 24, "message": "Increasing sequence number to 6 caused by callback_execution", "module": "test_callbacks", - "msecs": 80.05332946777344, + "msecs": 701.5414237976074, "msg": "Increasing sequence number to %d caused by callback_execution", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_callbacks.py", - "process": 8624, + "pathname": "src/tests/test_callbacks.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1714.0657901763916, + "relativeCreated": 1692.495346069336, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { "args": [ 7 ], - "asctime": "2019-12-27 08:39:31,080", - "created": 1577432371.0800962, + "asctime": "2020-06-16 09:01:53,701", + "created": 1592290913.701578, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", @@ -14041,15 +15726,15 @@ "lineno": 55, "message": "Increasing sequence number to 7 caused by sequence progress", "module": "test_callbacks", - "msecs": 80.09624481201172, + "msecs": 701.57790184021, "msg": "Increasing sequence number to %d caused by sequence progress", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_callbacks.py", - "process": 8624, + "pathname": "src/tests/test_callbacks.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1714.1087055206299, + "relativeCreated": 1692.5318241119385, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { @@ -14059,34 +15744,62 @@ "'state_a'", "'state_b'" ], - "asctime": "2019-12-27 08:39:31,080", - "created": 1577432371.0801404, + "asctime": "2020-06-16 09:01:53,701", + "created": 1592290913.7016227, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__set_state__", "levelname": "DEBUG", "levelno": 10, - "lineno": 174, + "lineno": 176, "message": "StateMachine: State change ('condition_b'): 'state_a' -> 'state_b'", "module": "__init__", - "msecs": 80.14035224914551, + "msecs": 701.622724533081, "msg": "%s State change (%s): %s -> %s", "name": "STATE_MACHINE", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/state_machine/__init__.py", - "process": 8624, + "pathname": "src/state_machine/__init__.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1714.1528129577637, + "relativeCreated": 1692.5766468048096, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, + "threadName": "MainThread" + }, + { + "args": [ + 0, + "tests.test_callbacks", + "exec_with_counter" + ], + "asctime": "2020-06-16 09:01:53,701", + "created": 1592290913.70166, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__set_state__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 195, + "message": "Executing callback 0 - tests.test_callbacks.exec_with_counter", + "module": "__init__", + "msecs": 701.6599178314209, + "msg": "Executing callback %d - %s.%s", + "name": "STATE_MACHINE", + "pathname": "src/state_machine/__init__.py", + "process": 11805, + "processName": "MainProcess", + "relativeCreated": 1692.6138401031494, + "stack_info": null, + "thread": 140551289812800, "threadName": "MainThread" }, { "args": [ 8 ], - "asctime": "2019-12-27 08:39:31,080", - "created": 1577432371.0801747, + "asctime": "2020-06-16 09:01:53,701", + "created": 1592290913.7016916, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", @@ -14096,23 +15809,51 @@ "lineno": 24, "message": "Increasing sequence number to 8 caused by callback_execution", "module": "test_callbacks", - "msecs": 80.17468452453613, + "msecs": 701.6916275024414, "msg": "Increasing sequence number to %d caused by callback_execution", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_callbacks.py", - "process": 8624, + "pathname": "src/tests/test_callbacks.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1714.1871452331543, + "relativeCreated": 1692.64554977417, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, + "threadName": "MainThread" + }, + { + "args": [ + 1, + "tests.test_callbacks", + "exec_with_counter" + ], + "asctime": "2020-06-16 09:01:53,701", + "created": 1592290913.701729, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__set_state__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 195, + "message": "Executing callback 1 - tests.test_callbacks.exec_with_counter", + "module": "__init__", + "msecs": 701.7290592193604, + "msg": "Executing callback %d - %s.%s", + "name": "STATE_MACHINE", + "pathname": "src/state_machine/__init__.py", + "process": 11805, + "processName": "MainProcess", + "relativeCreated": 1692.6829814910889, + "stack_info": null, + "thread": 140551289812800, "threadName": "MainThread" }, { "args": [ 9 ], - "asctime": "2019-12-27 08:39:31,080", - "created": 1577432371.0802093, + "asctime": "2020-06-16 09:01:53,701", + "created": 1592290913.701761, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", @@ -14122,23 +15863,23 @@ "lineno": 24, "message": "Increasing sequence number to 9 caused by callback_execution", "module": "test_callbacks", - "msecs": 80.20925521850586, + "msecs": 701.76100730896, "msg": "Increasing sequence number to %d caused by callback_execution", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_callbacks.py", - "process": 8624, + "pathname": "src/tests/test_callbacks.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1714.221715927124, + "relativeCreated": 1692.7149295806885, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { "args": [ 10 ], - "asctime": "2019-12-27 08:39:31,080", - "created": 1577432371.0802464, + "asctime": "2020-06-16 09:01:53,701", + "created": 1592290913.7017968, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", @@ -14148,15 +15889,15 @@ "lineno": 55, "message": "Increasing sequence number to 10 caused by sequence progress", "module": "test_callbacks", - "msecs": 80.2464485168457, + "msecs": 701.7967700958252, "msg": "Increasing sequence number to %d caused by sequence progress", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_callbacks.py", - "process": 8624, + "pathname": "src/tests/test_callbacks.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1714.2589092254639, + "relativeCreated": 1692.7506923675537, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { @@ -14166,34 +15907,62 @@ "'state_b'", "'state_c'" ], - "asctime": "2019-12-27 08:39:31,080", - "created": 1577432371.0802896, + "asctime": "2020-06-16 09:01:53,701", + "created": 1592290913.7018409, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__set_state__", "levelname": "DEBUG", "levelno": 10, - "lineno": 174, + "lineno": 176, "message": "StateMachine: State change ('condition_c'): 'state_b' -> 'state_c'", "module": "__init__", - "msecs": 80.28960227966309, + "msecs": 701.840877532959, "msg": "%s State change (%s): %s -> %s", "name": "STATE_MACHINE", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/state_machine/__init__.py", - "process": 8624, + "pathname": "src/state_machine/__init__.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1714.3020629882812, + "relativeCreated": 1692.7947998046875, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, + "threadName": "MainThread" + }, + { + "args": [ + 0, + "tests.test_callbacks", + "exec_with_counter" + ], + "asctime": "2020-06-16 09:01:53,701", + "created": 1592290913.701881, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__set_state__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 195, + "message": "Executing callback 0 - tests.test_callbacks.exec_with_counter", + "module": "__init__", + "msecs": 701.880931854248, + "msg": "Executing callback %d - %s.%s", + "name": "STATE_MACHINE", + "pathname": "src/state_machine/__init__.py", + "process": 11805, + "processName": "MainProcess", + "relativeCreated": 1692.8348541259766, + "stack_info": null, + "thread": 140551289812800, "threadName": "MainThread" }, { "args": [ 11 ], - "asctime": "2019-12-27 08:39:31,080", - "created": 1577432371.0803237, + "asctime": "2020-06-16 09:01:53,701", + "created": 1592290913.7019155, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", @@ -14203,23 +15972,51 @@ "lineno": 24, "message": "Increasing sequence number to 11 caused by callback_execution", "module": "test_callbacks", - "msecs": 80.32369613647461, + "msecs": 701.9155025482178, "msg": "Increasing sequence number to %d caused by callback_execution", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_callbacks.py", - "process": 8624, + "pathname": "src/tests/test_callbacks.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1714.3361568450928, + "relativeCreated": 1692.8694248199463, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, + "threadName": "MainThread" + }, + { + "args": [ + 1, + "tests.test_callbacks", + "exec_with_counter" + ], + "asctime": "2020-06-16 09:01:53,701", + "created": 1592290913.7019498, + "exc_info": null, + "exc_text": null, + "filename": "__init__.py", + "funcName": "__set_state__", + "levelname": "DEBUG", + "levelno": 10, + "lineno": 195, + "message": "Executing callback 1 - tests.test_callbacks.exec_with_counter", + "module": "__init__", + "msecs": 701.9498348236084, + "msg": "Executing callback %d - %s.%s", + "name": "STATE_MACHINE", + "pathname": "src/state_machine/__init__.py", + "process": 11805, + "processName": "MainProcess", + "relativeCreated": 1692.903757095337, + "stack_info": null, + "thread": 140551289812800, "threadName": "MainThread" }, { "args": [ 12 ], - "asctime": "2019-12-27 08:39:31,080", - "created": 1577432371.080358, + "asctime": "2020-06-16 09:01:53,701", + "created": 1592290913.701981, "exc_info": null, "exc_text": null, "filename": "test_callbacks.py", @@ -14229,34 +16026,34 @@ "lineno": 24, "message": "Increasing sequence number to 12 caused by callback_execution", "module": "test_callbacks", - "msecs": 80.35802841186523, + "msecs": 701.9810676574707, "msg": "Increasing sequence number to %d caused by callback_execution", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_callbacks.py", - "process": 8624, + "pathname": "src/tests/test_callbacks.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1714.3704891204834, + "relativeCreated": 1692.9349899291992, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" } ], - "msecs": 80.3980827331543, + "msecs": 702.0196914672852, "msg": "Running state machine sequence and storing sequence number for each callback", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_callbacks.py", - "process": 8624, + "pathname": "src/tests/test_callbacks.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1714.4105434417725, + "relativeCreated": 1692.9736137390137, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread", - "time_consumption": 4.00543212890625e-05 + "time_consumption": 3.8623809814453125e-05 }, { "args": [], - "asctime": "2019-12-27 08:39:31,080", - "created": 1577432371.0809586, + "asctime": "2020-06-16 09:01:53,702", + "created": 1592290913.702577, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -14273,8 +16070,8 @@ "[ 1, 4, 7, 10 ]", "" ], - "asctime": "2019-12-27 08:39:31,080", - "created": 1577432371.0804546, + "asctime": "2020-06-16 09:01:53,702", + "created": 1592290913.7020822, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -14284,15 +16081,15 @@ "lineno": 22, "message": "Result (Execution of state machine callback (1) (all_transitions, all_conditions) identified by a sequence number): [ 1, 4, 7, 10 ] ()", "module": "test", - "msecs": 80.45458793640137, + "msecs": 702.0821571350098, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1714.4670486450195, + "relativeCreated": 1693.0360794067383, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { @@ -14301,8 +16098,8 @@ "[ 1, 4, 7, 10 ]", "" ], - "asctime": "2019-12-27 08:39:31,080", - "created": 1577432371.0804942, + "asctime": "2020-06-16 09:01:53,702", + "created": 1592290913.7021208, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -14312,15 +16109,15 @@ "lineno": 26, "message": "Expectation (Execution of state machine callback (1) (all_transitions, all_conditions) identified by a sequence number): result = [ 1, 4, 7, 10 ] ()", "module": "test", - "msecs": 80.49416542053223, + "msecs": 702.1207809448242, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1714.5066261291504, + "relativeCreated": 1693.0747032165527, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { @@ -14329,8 +16126,8 @@ "1", "" ], - "asctime": "2019-12-27 08:39:31,080", - "created": 1577432371.0805306, + "asctime": "2020-06-16 09:01:53,702", + "created": 1592290913.7021568, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -14340,15 +16137,15 @@ "lineno": 22, "message": "Result (Submitted value number 1): 1 ()", "module": "test", - "msecs": 80.53064346313477, + "msecs": 702.1567821502686, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1714.543104171753, + "relativeCreated": 1693.110704421997, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { @@ -14357,8 +16154,8 @@ "1", "" ], - "asctime": "2019-12-27 08:39:31,080", - "created": 1577432371.0805657, + "asctime": "2020-06-16 09:01:53,702", + "created": 1592290913.7021892, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -14368,15 +16165,15 @@ "lineno": 26, "message": "Expectation (Submitted value number 1): result = 1 ()", "module": "test", - "msecs": 80.5656909942627, + "msecs": 702.1892070770264, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1714.5781517028809, + "relativeCreated": 1693.1431293487549, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { @@ -14384,8 +16181,8 @@ "1", "" ], - "asctime": "2019-12-27 08:39:31,080", - "created": 1577432371.0805993, + "asctime": "2020-06-16 09:01:53,702", + "created": 1592290913.7022223, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -14395,15 +16192,15 @@ "lineno": 142, "message": "Submitted value number 1 is correct (Content 1 and Type is ).", "module": "test", - "msecs": 80.59930801391602, + "msecs": 702.2223472595215, "msg": "Submitted value number 1 is correct (Content %s and Type is %s).", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1714.6117687225342, + "relativeCreated": 1693.17626953125, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { @@ -14412,8 +16209,8 @@ "4", "" ], - "asctime": "2019-12-27 08:39:31,080", - "created": 1577432371.0806515, + "asctime": "2020-06-16 09:01:53,702", + "created": 1592290913.702256, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -14423,15 +16220,15 @@ "lineno": 22, "message": "Result (Submitted value number 2): 4 ()", "module": "test", - "msecs": 80.65152168273926, + "msecs": 702.2559642791748, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1714.6639823913574, + "relativeCreated": 1693.2098865509033, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { @@ -14440,8 +16237,8 @@ "4", "" ], - "asctime": "2019-12-27 08:39:31,080", - "created": 1577432371.080699, + "asctime": "2020-06-16 09:01:53,702", + "created": 1592290913.7022877, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -14451,15 +16248,15 @@ "lineno": 26, "message": "Expectation (Submitted value number 2): result = 4 ()", "module": "test", - "msecs": 80.69896697998047, + "msecs": 702.2876739501953, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1714.7114276885986, + "relativeCreated": 1693.2415962219238, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { @@ -14467,8 +16264,8 @@ "4", "" ], - "asctime": "2019-12-27 08:39:31,080", - "created": 1577432371.0807319, + "asctime": "2020-06-16 09:01:53,702", + "created": 1592290913.7023199, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -14478,15 +16275,15 @@ "lineno": 142, "message": "Submitted value number 2 is correct (Content 4 and Type is ).", "module": "test", - "msecs": 80.73186874389648, + "msecs": 702.319860458374, "msg": "Submitted value number 2 is correct (Content %s and Type is %s).", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1714.7443294525146, + "relativeCreated": 1693.2737827301025, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { @@ -14495,8 +16292,8 @@ "7", "" ], - "asctime": "2019-12-27 08:39:31,080", - "created": 1577432371.0807648, + "asctime": "2020-06-16 09:01:53,702", + "created": 1592290913.7023702, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -14506,15 +16303,15 @@ "lineno": 22, "message": "Result (Submitted value number 3): 7 ()", "module": "test", - "msecs": 80.7647705078125, + "msecs": 702.3701667785645, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1714.7772312164307, + "relativeCreated": 1693.324089050293, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { @@ -14523,8 +16320,8 @@ "7", "" ], - "asctime": "2019-12-27 08:39:31,080", - "created": 1577432371.080796, + "asctime": "2020-06-16 09:01:53,702", + "created": 1592290913.7024028, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -14534,15 +16331,15 @@ "lineno": 26, "message": "Expectation (Submitted value number 3): result = 7 ()", "module": "test", - "msecs": 80.7960033416748, + "msecs": 702.4028301239014, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1714.808464050293, + "relativeCreated": 1693.3567523956299, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { @@ -14550,8 +16347,8 @@ "7", "" ], - "asctime": "2019-12-27 08:39:31,080", - "created": 1577432371.0808277, + "asctime": "2020-06-16 09:01:53,702", + "created": 1592290913.7024362, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -14561,15 +16358,15 @@ "lineno": 142, "message": "Submitted value number 3 is correct (Content 7 and Type is ).", "module": "test", - "msecs": 80.82771301269531, + "msecs": 702.4362087249756, "msg": "Submitted value number 3 is correct (Content %s and Type is %s).", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1714.8401737213135, + "relativeCreated": 1693.390130996704, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { @@ -14578,8 +16375,8 @@ "10", "" ], - "asctime": "2019-12-27 08:39:31,080", - "created": 1577432371.0808604, + "asctime": "2020-06-16 09:01:53,702", + "created": 1592290913.702472, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -14589,15 +16386,15 @@ "lineno": 22, "message": "Result (Submitted value number 4): 10 ()", "module": "test", - "msecs": 80.86037635803223, + "msecs": 702.4719715118408, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1714.8728370666504, + "relativeCreated": 1693.4258937835693, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { @@ -14606,8 +16403,8 @@ "10", "" ], - "asctime": "2019-12-27 08:39:31,080", - "created": 1577432371.0808954, + "asctime": "2020-06-16 09:01:53,702", + "created": 1592290913.7025046, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -14617,15 +16414,15 @@ "lineno": 26, "message": "Expectation (Submitted value number 4): result = 10 ()", "module": "test", - "msecs": 80.89542388916016, + "msecs": 702.5046348571777, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1714.9078845977783, + "relativeCreated": 1693.4585571289062, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { @@ -14633,8 +16430,8 @@ "10", "" ], - "asctime": "2019-12-27 08:39:31,080", - "created": 1577432371.0809278, + "asctime": "2020-06-16 09:01:53,702", + "created": 1592290913.7025375, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -14644,34 +16441,34 @@ "lineno": 142, "message": "Submitted value number 4 is correct (Content 10 and Type is ).", "module": "test", - "msecs": 80.92784881591797, + "msecs": 702.5375366210938, "msg": "Submitted value number 4 is correct (Content %s and Type is %s).", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1714.9403095245361, + "relativeCreated": 1693.4914588928223, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" } ], - "msecs": 80.95860481262207, + "msecs": 702.5771141052246, "msg": "Execution of state machine callback (1) (all_transitions, all_conditions) identified by a sequence number: Values and number of submitted values is correct. See detailed log for more information.", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1714.9710655212402, + "relativeCreated": 1693.5310363769531, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread", - "time_consumption": 3.075599670410156e-05 + "time_consumption": 3.9577484130859375e-05 }, { "args": [], - "asctime": "2019-12-27 08:39:31,081", - "created": 1577432371.0815182, + "asctime": "2020-06-16 09:01:53,703", + "created": 1592290913.703116, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -14688,8 +16485,8 @@ "[ 2, 5, 8, 11 ]", "" ], - "asctime": "2019-12-27 08:39:31,081", - "created": 1577432371.0810165, + "asctime": "2020-06-16 09:01:53,702", + "created": 1592290913.7026467, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -14699,15 +16496,15 @@ "lineno": 22, "message": "Result (Execution of state machine callback (2) (all_transitions, all_conditions) identified by a sequence number): [ 2, 5, 8, 11 ] ()", "module": "test", - "msecs": 81.01654052734375, + "msecs": 702.6467323303223, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1715.029001235962, + "relativeCreated": 1693.6006546020508, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { @@ -14716,8 +16513,8 @@ "[ 2, 5, 8, 11 ]", "" ], - "asctime": "2019-12-27 08:39:31,081", - "created": 1577432371.0810544, + "asctime": "2020-06-16 09:01:53,702", + "created": 1592290913.7026849, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -14727,15 +16524,15 @@ "lineno": 26, "message": "Expectation (Execution of state machine callback (2) (all_transitions, all_conditions) identified by a sequence number): result = [ 2, 5, 8, 11 ] ()", "module": "test", - "msecs": 81.0544490814209, + "msecs": 702.6848793029785, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1715.066909790039, + "relativeCreated": 1693.638801574707, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { @@ -14744,8 +16541,8 @@ "2", "" ], - "asctime": "2019-12-27 08:39:31,081", - "created": 1577432371.0810895, + "asctime": "2020-06-16 09:01:53,702", + "created": 1592290913.7027204, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -14755,15 +16552,15 @@ "lineno": 22, "message": "Result (Submitted value number 1): 2 ()", "module": "test", - "msecs": 81.08949661254883, + "msecs": 702.7204036712646, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1715.101957321167, + "relativeCreated": 1693.6743259429932, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { @@ -14772,8 +16569,8 @@ "2", "" ], - "asctime": "2019-12-27 08:39:31,081", - "created": 1577432371.0811212, + "asctime": "2020-06-16 09:01:53,702", + "created": 1592290913.702752, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -14783,15 +16580,15 @@ "lineno": 26, "message": "Expectation (Submitted value number 1): result = 2 ()", "module": "test", - "msecs": 81.12120628356934, + "msecs": 702.7521133422852, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1715.1336669921875, + "relativeCreated": 1693.7060356140137, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { @@ -14799,8 +16596,8 @@ "2", "" ], - "asctime": "2019-12-27 08:39:31,081", - "created": 1577432371.081154, + "asctime": "2020-06-16 09:01:53,702", + "created": 1592290913.7027845, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -14810,15 +16607,15 @@ "lineno": 142, "message": "Submitted value number 1 is correct (Content 2 and Type is ).", "module": "test", - "msecs": 81.15410804748535, + "msecs": 702.784538269043, "msg": "Submitted value number 1 is correct (Content %s and Type is %s).", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1715.1665687561035, + "relativeCreated": 1693.7384605407715, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { @@ -14827,8 +16624,8 @@ "5", "" ], - "asctime": "2019-12-27 08:39:31,081", - "created": 1577432371.0811872, + "asctime": "2020-06-16 09:01:53,702", + "created": 1592290913.7028255, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -14838,15 +16635,15 @@ "lineno": 22, "message": "Result (Submitted value number 2): 5 ()", "module": "test", - "msecs": 81.18724822998047, + "msecs": 702.8255462646484, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1715.1997089385986, + "relativeCreated": 1693.779468536377, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { @@ -14855,8 +16652,8 @@ "5", "" ], - "asctime": "2019-12-27 08:39:31,081", - "created": 1577432371.0812187, + "asctime": "2020-06-16 09:01:53,702", + "created": 1592290913.702858, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -14866,15 +16663,15 @@ "lineno": 26, "message": "Expectation (Submitted value number 2): result = 5 ()", "module": "test", - "msecs": 81.21871948242188, + "msecs": 702.8579711914062, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1715.23118019104, + "relativeCreated": 1693.8118934631348, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { @@ -14882,8 +16679,8 @@ "5", "" ], - "asctime": "2019-12-27 08:39:31,081", - "created": 1577432371.081251, + "asctime": "2020-06-16 09:01:53,702", + "created": 1592290913.7028894, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -14893,15 +16690,15 @@ "lineno": 142, "message": "Submitted value number 2 is correct (Content 5 and Type is ).", "module": "test", - "msecs": 81.25090599060059, + "msecs": 702.8894424438477, "msg": "Submitted value number 2 is correct (Content %s and Type is %s).", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1715.2633666992188, + "relativeCreated": 1693.8433647155762, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { @@ -14910,8 +16707,8 @@ "8", "" ], - "asctime": "2019-12-27 08:39:31,081", - "created": 1577432371.0812833, + "asctime": "2020-06-16 09:01:53,702", + "created": 1592290913.7029216, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -14921,15 +16718,15 @@ "lineno": 22, "message": "Result (Submitted value number 3): 8 ()", "module": "test", - "msecs": 81.2833309173584, + "msecs": 702.9216289520264, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1715.2957916259766, + "relativeCreated": 1693.8755512237549, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { @@ -14938,8 +16735,8 @@ "8", "" ], - "asctime": "2019-12-27 08:39:31,081", - "created": 1577432371.0813253, + "asctime": "2020-06-16 09:01:53,702", + "created": 1592290913.702953, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -14949,15 +16746,15 @@ "lineno": 26, "message": "Expectation (Submitted value number 3): result = 8 ()", "module": "test", - "msecs": 81.32529258728027, + "msecs": 702.9531002044678, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1715.3377532958984, + "relativeCreated": 1693.9070224761963, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { @@ -14965,8 +16762,8 @@ "8", "" ], - "asctime": "2019-12-27 08:39:31,081", - "created": 1577432371.0813575, + "asctime": "2020-06-16 09:01:53,702", + "created": 1592290913.7029872, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -14976,15 +16773,15 @@ "lineno": 142, "message": "Submitted value number 3 is correct (Content 8 and Type is ).", "module": "test", - "msecs": 81.35747909545898, + "msecs": 702.9871940612793, "msg": "Submitted value number 3 is correct (Content %s and Type is %s).", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1715.3699398040771, + "relativeCreated": 1693.9411163330078, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { @@ -14993,8 +16790,8 @@ "11", "" ], - "asctime": "2019-12-27 08:39:31,081", - "created": 1577432371.0814104, + "asctime": "2020-06-16 09:01:53,703", + "created": 1592290913.7030203, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -15004,15 +16801,15 @@ "lineno": 22, "message": "Result (Submitted value number 4): 11 ()", "module": "test", - "msecs": 81.41040802001953, + "msecs": 703.0203342437744, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1715.4228687286377, + "relativeCreated": 1693.974256515503, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { @@ -15021,8 +16818,8 @@ "11", "" ], - "asctime": "2019-12-27 08:39:31,081", - "created": 1577432371.081455, + "asctime": "2020-06-16 09:01:53,703", + "created": 1592290913.7030516, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -15032,15 +16829,15 @@ "lineno": 26, "message": "Expectation (Submitted value number 4): result = 11 ()", "module": "test", - "msecs": 81.45499229431152, + "msecs": 703.0515670776367, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1715.4674530029297, + "relativeCreated": 1694.0054893493652, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { @@ -15048,8 +16845,8 @@ "11", "" ], - "asctime": "2019-12-27 08:39:31,081", - "created": 1577432371.0814874, + "asctime": "2020-06-16 09:01:53,703", + "created": 1592290913.7030835, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -15059,41 +16856,41 @@ "lineno": 142, "message": "Submitted value number 4 is correct (Content 11 and Type is ).", "module": "test", - "msecs": 81.48741722106934, + "msecs": 703.0835151672363, "msg": "Submitted value number 4 is correct (Content %s and Type is %s).", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1715.4998779296875, + "relativeCreated": 1694.0374374389648, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" } ], - "msecs": 81.51817321777344, + "msecs": 703.1159400939941, "msg": "Execution of state machine callback (2) (all_transitions, all_conditions) identified by a sequence number: Values and number of submitted values is correct. See detailed log for more information.", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 1715.5306339263916, + "relativeCreated": 1694.0698623657227, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread", - "time_consumption": 3.075599670410156e-05 + "time_consumption": 3.24249267578125e-05 } ], - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread", - "time_consumption": 0.0018534660339355469, - "time_finished": "2019-12-27 08:39:31,081", - "time_start": "2019-12-27 08:39:31,079" + "time_consumption": 0.0021085739135742188, + "time_finished": "2020-06-16 09:01:53,703", + "time_start": "2020-06-16 09:01:53,701" }, "_fE3tMHczEemrUqotql_Blw": { "args": null, - "asctime": "2019-12-27 08:39:29,430", - "created": 1577432369.4306138, + "asctime": "2020-06-16 09:01:52,068", + "created": 1592290912.0683682, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -15104,19 +16901,19 @@ "message": "_fE3tMHczEemrUqotql_Blw", "module": "__init__", "moduleLogger": [], - "msecs": 430.61375617980957, + "msecs": 68.36819648742676, "msg": "_fE3tMHczEemrUqotql_Blw", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/__init__.py", - "process": 8624, + "pathname": "/user_data/data/dirk/prj/unittest/state_machine/unittest/src/tests/__init__.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 64.62621688842773, + "relativeCreated": 59.32211875915527, "stack_info": null, "testcaseLogger": [ { "args": [], - "asctime": "2019-12-27 08:39:29,430", - "created": 1577432369.4307377, + "asctime": "2020-06-16 09:01:52,068", + "created": 1592290912.0685048, "exc_info": null, "exc_text": null, "filename": "test_transitions.py", @@ -15134,48 +16931,48 @@ "None", "'state_a'" ], - "asctime": "2019-12-27 08:39:29,430", - "created": 1577432369.4306924, + "asctime": "2020-06-16 09:01:52,068", + "created": 1592290912.0684528, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__set_state__", "levelname": "DEBUG", "levelno": 10, - "lineno": 174, + "lineno": 176, "message": "StateMachine: State change ('__init__'): None -> 'state_a'", "module": "__init__", - "msecs": 430.6924343109131, + "msecs": 68.45283508300781, "msg": "%s State change (%s): %s -> %s", "name": "STATE_MACHINE", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/state_machine/__init__.py", - "process": 8624, + "pathname": "src/state_machine/__init__.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 64.70489501953125, + "relativeCreated": 59.40675735473633, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" } ], - "msecs": 430.7377338409424, + "msecs": 68.50481033325195, "msg": "Initialising state machine with state_a", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_transitions.py", - "process": 8624, + "pathname": "src/tests/test_transitions.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 64.75019454956055, + "relativeCreated": 59.45873260498047, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread", - "time_consumption": 4.5299530029296875e-05 + "time_consumption": 5.1975250244140625e-05 }, { "args": [ "'state_a'", "" ], - "asctime": "2019-12-27 08:39:29,430", - "created": 1577432369.430853, + "asctime": "2020-06-16 09:01:52,068", + "created": 1592290912.0686326, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -15192,8 +16989,8 @@ "'state_a'", "" ], - "asctime": "2019-12-27 08:39:29,430", - "created": 1577432369.4307847, + "asctime": "2020-06-16 09:01:52,068", + "created": 1592290912.0685558, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -15203,15 +17000,15 @@ "lineno": 22, "message": "Result (Initial state after Initialisation): 'state_a' ()", "module": "test", - "msecs": 430.7847023010254, + "msecs": 68.55583190917969, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 64.79716300964355, + "relativeCreated": 59.5097541809082, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { @@ -15220,8 +17017,8 @@ "'state_a'", "" ], - "asctime": "2019-12-27 08:39:29,430", - "created": 1577432369.4308193, + "asctime": "2020-06-16 09:01:52,068", + "created": 1592290912.0685961, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -15231,36 +17028,36 @@ "lineno": 26, "message": "Expectation (Initial state after Initialisation): result = 'state_a' ()", "module": "test", - "msecs": 430.8192729949951, + "msecs": 68.59612464904785, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 64.83173370361328, + "relativeCreated": 59.55004692077637, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" } ], - "msecs": 430.85289001464844, + "msecs": 68.63260269165039, "msg": "Initial state after Initialisation is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 64.8653507232666, + "relativeCreated": 59.586524963378906, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread", - "time_consumption": 3.361701965332031e-05 + "time_consumption": 3.647804260253906e-05 }, { "args": [ 0.16 ], - "asctime": "2019-12-27 08:39:29,581", - "created": 1577432369.5815747, + "asctime": "2020-06-16 09:01:52,219", + "created": 1592290912.2193117, "exc_info": null, "exc_text": null, "filename": "test_transitions.py", @@ -15278,48 +17075,48 @@ "'state_a'", "'state_b'" ], - "asctime": "2019-12-27 08:39:29,581", - "created": 1577432369.5811167, + "asctime": "2020-06-16 09:01:52,218", + "created": 1592290912.2188673, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__set_state__", "levelname": "DEBUG", "levelno": 10, - "lineno": 174, + "lineno": 176, "message": "StateMachine: State change ('condition_true'): 'state_a' -> 'state_b'", "module": "__init__", - "msecs": 581.1166763305664, + "msecs": 218.86730194091797, "msg": "%s State change (%s): %s -> %s", "name": "STATE_MACHINE", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/state_machine/__init__.py", - "process": 8624, + "pathname": "src/state_machine/__init__.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 215.12913703918457, + "relativeCreated": 209.82122421264648, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" } ], - "msecs": 581.5746784210205, + "msecs": 219.31171417236328, "msg": "Waiting for %.3fs or state change", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_transitions.py", - "process": 8624, + "pathname": "src/tests/test_transitions.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 215.58713912963867, + "relativeCreated": 210.2656364440918, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread", - "time_consumption": 0.00045800209045410156 + "time_consumption": 0.0004444122314453125 }, { "args": [ "'state_b'", "" ], - "asctime": "2019-12-27 08:39:29,583", - "created": 1577432369.583144, + "asctime": "2020-06-16 09:01:52,220", + "created": 1592290912.22055, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -15336,8 +17133,8 @@ "'state_b'", "" ], - "asctime": "2019-12-27 08:39:29,582", - "created": 1577432369.5826802, + "asctime": "2020-06-16 09:01:52,220", + "created": 1592290912.2201424, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -15347,15 +17144,15 @@ "lineno": 22, "message": "Result (State after 1st cycle): 'state_b' ()", "module": "test", - "msecs": 582.6802253723145, + "msecs": 220.14236450195312, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 216.69268608093262, + "relativeCreated": 211.09628677368164, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { @@ -15364,8 +17161,8 @@ "'state_b'", "" ], - "asctime": "2019-12-27 08:39:29,582", - "created": 1577432369.5829625, + "asctime": "2020-06-16 09:01:52,220", + "created": 1592290912.2203786, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -15375,39 +17172,39 @@ "lineno": 26, "message": "Expectation (State after 1st cycle): result = 'state_b' ()", "module": "test", - "msecs": 582.9625129699707, + "msecs": 220.37863731384277, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 216.97497367858887, + "relativeCreated": 211.3325595855713, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" } ], - "msecs": 583.143949508667, + "msecs": 220.5500602722168, "msg": "State after 1st cycle is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 217.15641021728516, + "relativeCreated": 211.5039825439453, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread", - "time_consumption": 0.00018143653869628906 + "time_consumption": 0.00017142295837402344 }, { "args": [ - "0.15064692497253418", + "0.1506061553955078", "0.145", "0.155", "" ], - "asctime": "2019-12-27 08:39:29,583", - "created": 1577432369.583695, + "asctime": "2020-06-16 09:01:52,221", + "created": 1592290912.2210724, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -15415,17 +17212,17 @@ "levelname": "INFO", "levelno": 20, "lineno": 218, - "message": "Transition time after 1st cycle is correct (Content 0.15064692497253418 in [0.145 ... 0.155] and Type is ).", + "message": "Transition time after 1st cycle is correct (Content 0.1506061553955078 in [0.145 ... 0.155] and Type is ).", "module": "test", "moduleLogger": [ { "args": [ "Transition time after 1st cycle", - "0.15064692497253418", + "0.1506061553955078", "" ], - "asctime": "2019-12-27 08:39:29,583", - "created": 1577432369.5833564, + "asctime": "2020-06-16 09:01:52,220", + "created": 1592290912.220766, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -15433,17 +17230,17 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 22, - "message": "Result (Transition time after 1st cycle): 0.15064692497253418 ()", + "message": "Result (Transition time after 1st cycle): 0.1506061553955078 ()", "module": "test", - "msecs": 583.3563804626465, + "msecs": 220.7660675048828, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 217.36884117126465, + "relativeCreated": 211.71998977661133, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { @@ -15452,8 +17249,8 @@ "0.145", "0.155" ], - "asctime": "2019-12-27 08:39:29,583", - "created": 1577432369.583534, + "asctime": "2020-06-16 09:01:52,220", + "created": 1592290912.2209396, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -15463,36 +17260,36 @@ "lineno": 30, "message": "Expectation (Transition time after 1st cycle): 0.145 <= result <= 0.155", "module": "test", - "msecs": 583.5340023040771, + "msecs": 220.93963623046875, "msg": "Expectation (%s): %s <= result <= %s", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 217.5464630126953, + "relativeCreated": 211.89355850219727, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" } ], - "msecs": 583.6949348449707, + "msecs": 221.07243537902832, "msg": "Transition time after 1st cycle is correct (Content %s in [%s ... %s] and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 217.70739555358887, + "relativeCreated": 212.02635765075684, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread", - "time_consumption": 0.0001609325408935547 + "time_consumption": 0.0001327991485595703 }, { "args": [ 0.235 ], - "asctime": "2019-12-27 08:39:29,809", - "created": 1577432369.809532, + "asctime": "2020-06-16 09:01:52,446", + "created": 1592290912.4467828, "exc_info": null, "exc_text": null, "filename": "test_transitions.py", @@ -15510,48 +17307,48 @@ "'state_b'", "'state_c'" ], - "asctime": "2019-12-27 08:39:29,809", - "created": 1577432369.8090985, + "asctime": "2020-06-16 09:01:52,446", + "created": 1592290912.4464483, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__set_state__", "levelname": "DEBUG", "levelno": 10, - "lineno": 174, + "lineno": 176, "message": "StateMachine: State change ('condition_true'): 'state_b' -> 'state_c'", "module": "__init__", - "msecs": 809.098482131958, + "msecs": 446.44832611083984, "msg": "%s State change (%s): %s -> %s", "name": "STATE_MACHINE", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/state_machine/__init__.py", - "process": 8624, + "pathname": "src/state_machine/__init__.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 443.1109428405762, + "relativeCreated": 437.40224838256836, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" } ], - "msecs": 809.5319271087646, + "msecs": 446.78282737731934, "msg": "Waiting for %.3fs or state change", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_transitions.py", - "process": 8624, + "pathname": "src/tests/test_transitions.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 443.5443878173828, + "relativeCreated": 437.73674964904785, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread", - "time_consumption": 0.0004334449768066406 + "time_consumption": 0.0003345012664794922 }, { "args": [ "'state_c'", "" ], - "asctime": "2019-12-27 08:39:29,810", - "created": 1577432369.8101294, + "asctime": "2020-06-16 09:01:52,447", + "created": 1592290912.4470856, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -15568,8 +17365,8 @@ "'state_c'", "" ], - "asctime": "2019-12-27 08:39:29,809", - "created": 1577432369.8098202, + "asctime": "2020-06-16 09:01:52,446", + "created": 1592290912.44694, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -15579,15 +17376,15 @@ "lineno": 22, "message": "Result (State after 2nd cycle): 'state_c' ()", "module": "test", - "msecs": 809.8201751708984, + "msecs": 446.93994522094727, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 443.8326358795166, + "relativeCreated": 437.8938674926758, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { @@ -15596,8 +17393,8 @@ "'state_c'", "" ], - "asctime": "2019-12-27 08:39:29,809", - "created": 1577432369.8099813, + "asctime": "2020-06-16 09:01:52,447", + "created": 1592290912.4470158, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -15607,39 +17404,39 @@ "lineno": 26, "message": "Expectation (State after 2nd cycle): result = 'state_c' ()", "module": "test", - "msecs": 809.9813461303711, + "msecs": 447.01576232910156, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 443.99380683898926, + "relativeCreated": 437.9696846008301, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" } ], - "msecs": 810.1294040679932, + "msecs": 447.0856189727783, "msg": "State after 2nd cycle is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 444.1418647766113, + "relativeCreated": 438.03954124450684, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread", - "time_consumption": 0.0001480579376220703 + "time_consumption": 6.985664367675781e-05 }, { "args": [ - "0.15042734146118164", + "0.15029168128967285", "0.145", "0.155", "" ], - "asctime": "2019-12-27 08:39:29,810", - "created": 1577432369.8106217, + "asctime": "2020-06-16 09:01:52,447", + "created": 1592290912.4473212, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -15647,17 +17444,17 @@ "levelname": "INFO", "levelno": 20, "lineno": 218, - "message": "Transition time after 2nd cycle is correct (Content 0.15042734146118164 in [0.145 ... 0.155] and Type is ).", + "message": "Transition time after 2nd cycle is correct (Content 0.15029168128967285 in [0.145 ... 0.155] and Type is ).", "module": "test", "moduleLogger": [ { "args": [ "Transition time after 2nd cycle", - "0.15042734146118164", + "0.15029168128967285", "" ], - "asctime": "2019-12-27 08:39:29,810", - "created": 1577432369.810326, + "asctime": "2020-06-16 09:01:52,447", + "created": 1592290912.4471843, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -15665,17 +17462,17 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 22, - "message": "Result (Transition time after 2nd cycle): 0.15042734146118164 ()", + "message": "Result (Transition time after 2nd cycle): 0.15029168128967285 ()", "module": "test", - "msecs": 810.326099395752, + "msecs": 447.18432426452637, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 444.3385601043701, + "relativeCreated": 438.1382465362549, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { @@ -15684,8 +17481,8 @@ "0.145", "0.155" ], - "asctime": "2019-12-27 08:39:29,810", - "created": 1577432369.8104641, + "asctime": "2020-06-16 09:01:52,447", + "created": 1592290912.4472523, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -15695,39 +17492,39 @@ "lineno": 30, "message": "Expectation (Transition time after 2nd cycle): 0.145 <= result <= 0.155", "module": "test", - "msecs": 810.4641437530518, + "msecs": 447.2522735595703, "msg": "Expectation (%s): %s <= result <= %s", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 444.4766044616699, + "relativeCreated": 438.2061958312988, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" } ], - "msecs": 810.6217384338379, + "msecs": 447.32117652893066, "msg": "Transition time after 2nd cycle is correct (Content %s in [%s ... %s] and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 444.63419914245605, + "relativeCreated": 438.2750988006592, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread", - "time_consumption": 0.0001575946807861328 + "time_consumption": 6.890296936035156e-05 }, { "args": [ - "0.22565054893493652", + "0.22554683685302734", "0.21999999999999997", "0.22999999999999998", "" ], - "asctime": "2019-12-27 08:39:29,811", - "created": 1577432369.8111053, + "asctime": "2020-06-16 09:01:52,447", + "created": 1592290912.4475648, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -15735,17 +17532,17 @@ "levelname": "INFO", "levelno": 20, "lineno": 218, - "message": "Previous state duration is correct (Content 0.22565054893493652 in [0.21999999999999997 ... 0.22999999999999998] and Type is ).", + "message": "Previous state duration is correct (Content 0.22554683685302734 in [0.21999999999999997 ... 0.22999999999999998] and Type is ).", "module": "test", "moduleLogger": [ { "args": [ "Previous state duration", - "0.22565054893493652", + "0.22554683685302734", "" ], - "asctime": "2019-12-27 08:39:29,810", - "created": 1577432369.810816, + "asctime": "2020-06-16 09:01:52,447", + "created": 1592290912.4474297, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -15753,17 +17550,17 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 22, - "message": "Result (Previous state duration): 0.22565054893493652 ()", + "message": "Result (Previous state duration): 0.22554683685302734 ()", "module": "test", - "msecs": 810.8160495758057, + "msecs": 447.4296569824219, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 444.8285102844238, + "relativeCreated": 438.3835792541504, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { @@ -15772,8 +17569,8 @@ "0.21999999999999997", "0.22999999999999998" ], - "asctime": "2019-12-27 08:39:29,810", - "created": 1577432369.8109534, + "asctime": "2020-06-16 09:01:52,447", + "created": 1592290912.4474967, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -15783,41 +17580,41 @@ "lineno": 30, "message": "Expectation (Previous state duration): 0.21999999999999997 <= result <= 0.22999999999999998", "module": "test", - "msecs": 810.9533786773682, + "msecs": 447.4966526031494, "msg": "Expectation (%s): %s <= result <= %s", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 444.9658393859863, + "relativeCreated": 438.45057487487793, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" } ], - "msecs": 811.1052513122559, + "msecs": 447.56484031677246, "msg": "Previous state duration is correct (Content %s in [%s ... %s] and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 445.117712020874, + "relativeCreated": 438.518762588501, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread", - "time_consumption": 0.0001518726348876953 + "time_consumption": 6.818771362304688e-05 } ], - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread", - "time_consumption": 0.3804914951324463, - "time_finished": "2019-12-27 08:39:29,811", - "time_start": "2019-12-27 08:39:29,430" + "time_consumption": 0.3791966438293457, + "time_finished": "2020-06-16 09:01:52,447", + "time_start": "2020-06-16 09:01:52,068" }, "_iTFPQHcrEemrUqotql_Blw": { "args": null, - "asctime": "2019-12-27 08:39:29,428", - "created": 1577432369.4289916, + "asctime": "2020-06-16 09:01:52,066", + "created": 1592290912.0667539, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -15828,19 +17625,19 @@ "message": "_iTFPQHcrEemrUqotql_Blw", "module": "__init__", "moduleLogger": [], - "msecs": 428.99155616760254, + "msecs": 66.75386428833008, "msg": "_iTFPQHcrEemrUqotql_Blw", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/__init__.py", - "process": 8624, + "pathname": "/user_data/data/dirk/prj/unittest/state_machine/unittest/src/tests/__init__.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 63.0040168762207, + "relativeCreated": 57.707786560058594, "stack_info": null, "testcaseLogger": [ { "args": [], - "asctime": "2019-12-27 08:39:29,429", - "created": 1577432369.4290895, + "asctime": "2020-06-16 09:01:52,066", + "created": 1592290912.0668602, "exc_info": null, "exc_text": null, "filename": "test_init.py", @@ -15858,48 +17655,48 @@ "None", "'state_c'" ], - "asctime": "2019-12-27 08:39:29,429", - "created": 1577432369.4290454, + "asctime": "2020-06-16 09:01:52,066", + "created": 1592290912.0668108, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__set_state__", "levelname": "DEBUG", "levelno": 10, - "lineno": 174, + "lineno": 176, "message": "StateMachine: State change ('__init__'): None -> 'state_c'", "module": "__init__", - "msecs": 429.0454387664795, + "msecs": 66.81084632873535, "msg": "%s State change (%s): %s -> %s", "name": "STATE_MACHINE", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/state_machine/__init__.py", - "process": 8624, + "pathname": "src/state_machine/__init__.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 63.057899475097656, + "relativeCreated": 57.76476860046387, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" } ], - "msecs": 429.0895462036133, + "msecs": 66.86019897460938, "msg": "Initialising the state machine with state_c", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_init.py", - "process": 8624, + "pathname": "src/tests/test_init.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 63.102006912231445, + "relativeCreated": 57.81412124633789, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread", - "time_consumption": 4.410743713378906e-05 + "time_consumption": 4.935264587402344e-05 }, { "args": [ "1", "" ], - "asctime": "2019-12-27 08:39:29,429", - "created": 1577432369.429203, + "asctime": "2020-06-16 09:01:52,066", + "created": 1592290912.06698, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -15916,8 +17713,8 @@ "1", "" ], - "asctime": "2019-12-27 08:39:29,429", - "created": 1577432369.429135, + "asctime": "2020-06-16 09:01:52,066", + "created": 1592290912.0669103, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -15927,15 +17724,15 @@ "lineno": 22, "message": "Result (Keyword argument kw_arg_no_1 stored in state_machine): 1 ()", "module": "test", - "msecs": 429.1350841522217, + "msecs": 66.9102668762207, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 63.147544860839844, + "relativeCreated": 57.86418914794922, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { @@ -15944,8 +17741,8 @@ "1", "" ], - "asctime": "2019-12-27 08:39:29,429", - "created": 1577432369.4291694, + "asctime": "2020-06-16 09:01:52,066", + "created": 1592290912.0669453, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -15955,37 +17752,37 @@ "lineno": 26, "message": "Expectation (Keyword argument kw_arg_no_1 stored in state_machine): result = 1 ()", "module": "test", - "msecs": 429.1694164276123, + "msecs": 66.94531440734863, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 63.18187713623047, + "relativeCreated": 57.89923667907715, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" } ], - "msecs": 429.2030334472656, + "msecs": 66.97988510131836, "msg": "Keyword argument kw_arg_no_1 stored in state_machine is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 63.21549415588379, + "relativeCreated": 57.933807373046875, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread", - "time_consumption": 3.361701965332031e-05 + "time_consumption": 3.457069396972656e-05 }, { "args": [ "'2'", "" ], - "asctime": "2019-12-27 08:39:29,429", - "created": 1577432369.429316, + "asctime": "2020-06-16 09:01:52,067", + "created": 1592290912.067097, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -16002,8 +17799,8 @@ "'2'", "" ], - "asctime": "2019-12-27 08:39:29,429", - "created": 1577432369.429247, + "asctime": "2020-06-16 09:01:52,067", + "created": 1592290912.0670269, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -16013,15 +17810,15 @@ "lineno": 22, "message": "Result (Keyword argument kw_arg_no_2 stored in state_machine): '2' ()", "module": "test", - "msecs": 429.2469024658203, + "msecs": 67.02685356140137, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 63.25936317443848, + "relativeCreated": 57.98077583312988, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { @@ -16030,8 +17827,8 @@ "'2'", "" ], - "asctime": "2019-12-27 08:39:29,429", - "created": 1577432369.4292803, + "asctime": "2020-06-16 09:01:52,067", + "created": 1592290912.067061, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -16041,37 +17838,37 @@ "lineno": 26, "message": "Expectation (Keyword argument kw_arg_no_2 stored in state_machine): result = '2' ()", "module": "test", - "msecs": 429.28028106689453, + "msecs": 67.06094741821289, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 63.292741775512695, + "relativeCreated": 58.014869689941406, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" } ], - "msecs": 429.31604385375977, + "msecs": 67.09694862365723, "msg": "Keyword argument kw_arg_no_2 stored in state_machine is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 63.32850456237793, + "relativeCreated": 58.05087089538574, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread", - "time_consumption": 3.5762786865234375e-05 + "time_consumption": 3.600120544433594e-05 }, { "args": [ "True", "" ], - "asctime": "2019-12-27 08:39:29,429", - "created": 1577432369.4294817, + "asctime": "2020-06-16 09:01:52,067", + "created": 1592290912.0672102, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -16088,8 +17885,8 @@ "True", "" ], - "asctime": "2019-12-27 08:39:29,429", - "created": 1577432369.429364, + "asctime": "2020-06-16 09:01:52,067", + "created": 1592290912.067144, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -16099,15 +17896,15 @@ "lineno": 22, "message": "Result (Keyword argument kw_arg_no_3 stored in state_machine): True ()", "module": "test", - "msecs": 429.3639659881592, + "msecs": 67.14391708374023, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 63.376426696777344, + "relativeCreated": 58.09783935546875, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { @@ -16116,8 +17913,8 @@ "True", "" ], - "asctime": "2019-12-27 08:39:29,429", - "created": 1577432369.4294472, + "asctime": "2020-06-16 09:01:52,067", + "created": 1592290912.0671773, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -16127,37 +17924,37 @@ "lineno": 26, "message": "Expectation (Keyword argument kw_arg_no_3 stored in state_machine): result = True ()", "module": "test", - "msecs": 429.4471740722656, + "msecs": 67.17729568481445, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 63.45963478088379, + "relativeCreated": 58.13121795654297, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" } ], - "msecs": 429.48174476623535, + "msecs": 67.21019744873047, "msg": "Keyword argument kw_arg_no_3 stored in state_machine is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 63.494205474853516, + "relativeCreated": 58.164119720458984, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread", - "time_consumption": 3.457069396972656e-05 + "time_consumption": 3.2901763916015625e-05 }, { "args": [ "{'1': 1, '2': 'two'}", "" ], - "asctime": "2019-12-27 08:39:29,429", - "created": 1577432369.4296174, + "asctime": "2020-06-16 09:01:52,067", + "created": 1592290912.0673516, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -16174,8 +17971,8 @@ "{ '1': 1, '2': 'two' }", "" ], - "asctime": "2019-12-27 08:39:29,429", - "created": 1577432369.429532, + "asctime": "2020-06-16 09:01:52,067", + "created": 1592290912.0672657, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -16185,15 +17982,15 @@ "lineno": 22, "message": "Result (Keyword argument kw_arg_no_4 stored in state_machine): { '1': 1, '2': 'two' } ()", "module": "test", - "msecs": 429.5320510864258, + "msecs": 67.26574897766113, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 63.544511795043945, + "relativeCreated": 58.21967124938965, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { @@ -16202,8 +17999,8 @@ "{ '1': 1, '2': 'two' }", "" ], - "asctime": "2019-12-27 08:39:29,429", - "created": 1577432369.4295723, + "asctime": "2020-06-16 09:01:52,067", + "created": 1592290912.0673063, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -16213,41 +18010,41 @@ "lineno": 26, "message": "Expectation (Keyword argument kw_arg_no_4 stored in state_machine): result = { '1': 1, '2': 'two' } ()", "module": "test", - "msecs": 429.57234382629395, + "msecs": 67.3062801361084, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 63.58480453491211, + "relativeCreated": 58.260202407836914, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" } ], - "msecs": 429.61740493774414, + "msecs": 67.3515796661377, "msg": "Keyword argument kw_arg_no_4 stored in state_machine is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 63.629865646362305, + "relativeCreated": 58.30550193786621, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread", - "time_consumption": 4.506111145019531e-05 + "time_consumption": 4.5299530029296875e-05 } ], - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread", - "time_consumption": 0.0006258487701416016, - "time_finished": "2019-12-27 08:39:29,429", - "time_start": "2019-12-27 08:39:29,428" + "time_consumption": 0.0005977153778076172, + "time_finished": "2020-06-16 09:01:52,067", + "time_start": "2020-06-16 09:01:52,066" }, "_j2FvkHcqEemrUqotql_Blw": { "args": null, - "asctime": "2019-12-27 08:39:29,428", - "created": 1577432369.4284174, + "asctime": "2020-06-16 09:01:52,066", + "created": 1592290912.0660937, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -16258,19 +18055,19 @@ "message": "_j2FvkHcqEemrUqotql_Blw", "module": "__init__", "moduleLogger": [], - "msecs": 428.417444229126, + "msecs": 66.09368324279785, "msg": "_j2FvkHcqEemrUqotql_Blw", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/__init__.py", - "process": 8624, + "pathname": "/user_data/data/dirk/prj/unittest/state_machine/unittest/src/tests/__init__.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 62.42990493774414, + "relativeCreated": 57.04760551452637, "stack_info": null, "testcaseLogger": [ { "args": [], - "asctime": "2019-12-27 08:39:29,428", - "created": 1577432369.4285176, + "asctime": "2020-06-16 09:01:52,066", + "created": 1592290912.0661983, "exc_info": null, "exc_text": null, "filename": "test_init.py", @@ -16288,48 +18085,48 @@ "None", "'state_c'" ], - "asctime": "2019-12-27 08:39:29,428", - "created": 1577432369.4284754, + "asctime": "2020-06-16 09:01:52,066", + "created": 1592290912.0661528, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__set_state__", "levelname": "DEBUG", "levelno": 10, - "lineno": 174, + "lineno": 176, "message": "StateMachine: State change ('__init__'): None -> 'state_c'", "module": "__init__", - "msecs": 428.47537994384766, + "msecs": 66.15281105041504, "msg": "%s State change (%s): %s -> %s", "name": "STATE_MACHINE", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/state_machine/__init__.py", - "process": 8624, + "pathname": "src/state_machine/__init__.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 62.48784065246582, + "relativeCreated": 57.106733322143555, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" } ], - "msecs": 428.51758003234863, + "msecs": 66.19834899902344, "msg": "Initialising the state machine with state_c", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_init.py", - "process": 8624, + "pathname": "src/tests/test_init.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 62.5300407409668, + "relativeCreated": 57.15227127075195, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread", - "time_consumption": 4.220008850097656e-05 + "time_consumption": 4.553794860839844e-05 }, { "args": [ "'__init__'", "" ], - "asctime": "2019-12-27 08:39:29,428", - "created": 1577432369.4286382, + "asctime": "2020-06-16 09:01:52,066", + "created": 1592290912.06633, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -16346,8 +18143,8 @@ "'__init__'", "" ], - "asctime": "2019-12-27 08:39:29,428", - "created": 1577432369.4285643, + "asctime": "2020-06-16 09:01:52,066", + "created": 1592290912.066249, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -16357,15 +18154,15 @@ "lineno": 22, "message": "Result (Last transition condition after initialisation): '__init__' ()", "module": "test", - "msecs": 428.56431007385254, + "msecs": 66.24889373779297, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 62.5767707824707, + "relativeCreated": 57.202816009521484, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { @@ -16374,8 +18171,8 @@ "'__init__'", "" ], - "asctime": "2019-12-27 08:39:29,428", - "created": 1577432369.4286032, + "asctime": "2020-06-16 09:01:52,066", + "created": 1592290912.0662892, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -16385,41 +18182,41 @@ "lineno": 26, "message": "Expectation (Last transition condition after initialisation): result = '__init__' ()", "module": "test", - "msecs": 428.6031723022461, + "msecs": 66.28918647766113, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 62.61563301086426, + "relativeCreated": 57.24310874938965, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" } ], - "msecs": 428.638219833374, + "msecs": 66.3299560546875, "msg": "Last transition condition after initialisation is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 62.65068054199219, + "relativeCreated": 57.283878326416016, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread", - "time_consumption": 3.504753112792969e-05 + "time_consumption": 4.076957702636719e-05 } ], - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread", - "time_consumption": 0.00022077560424804688, - "time_finished": "2019-12-27 08:39:29,428", - "time_start": "2019-12-27 08:39:29,428" + "time_consumption": 0.00023627281188964844, + "time_finished": "2020-06-16 09:01:52,066", + "time_start": "2020-06-16 09:01:52,066" }, "_tRZ50HcyEemrUqotql_Blw": { "args": null, - "asctime": "2019-12-27 08:39:30,055", - "created": 1577432370.0555599, + "asctime": "2020-06-16 09:01:52,691", + "created": 1592290912.6915996, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -16430,19 +18227,19 @@ "message": "_tRZ50HcyEemrUqotql_Blw", "module": "__init__", "moduleLogger": [], - "msecs": 55.55987358093262, + "msecs": 691.5996074676514, "msg": "_tRZ50HcyEemrUqotql_Blw", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/__init__.py", - "process": 8624, + "pathname": "/user_data/data/dirk/prj/unittest/state_machine/unittest/src/tests/__init__.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 689.5723342895508, + "relativeCreated": 682.5535297393799, "stack_info": null, "testcaseLogger": [ { "args": [], - "asctime": "2019-12-27 08:39:30,055", - "created": 1577432370.0559556, + "asctime": "2020-06-16 09:01:52,691", + "created": 1592290912.6917167, "exc_info": null, "exc_text": null, "filename": "test_interface.py", @@ -16460,48 +18257,48 @@ "None", "'state_c'" ], - "asctime": "2019-12-27 08:39:30,055", - "created": 1577432370.0557823, + "asctime": "2020-06-16 09:01:52,691", + "created": 1592290912.6916687, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__set_state__", "levelname": "DEBUG", "levelno": 10, - "lineno": 174, + "lineno": 176, "message": "StateMachine: State change ('__init__'): None -> 'state_c'", "module": "__init__", - "msecs": 55.782318115234375, + "msecs": 691.6687488555908, "msg": "%s State change (%s): %s -> %s", "name": "STATE_MACHINE", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/state_machine/__init__.py", - "process": 8624, + "pathname": "src/state_machine/__init__.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 689.7947788238525, + "relativeCreated": 682.6226711273193, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" } ], - "msecs": 55.95564842224121, + "msecs": 691.7166709899902, "msg": "Initialising the state machine with state_c", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_interface.py", - "process": 8624, + "pathname": "src/tests/test_interface.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 689.9681091308594, + "relativeCreated": 682.6705932617188, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread", - "time_consumption": 0.00017333030700683594 + "time_consumption": 4.792213439941406e-05 }, { "args": [ "'state_c'", "" ], - "asctime": "2019-12-27 08:39:30,056", - "created": 1577432370.0563927, + "asctime": "2020-06-16 09:01:52,691", + "created": 1592290912.6918437, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -16518,8 +18315,8 @@ "'state_c'", "" ], - "asctime": "2019-12-27 08:39:30,056", - "created": 1577432370.0561318, + "asctime": "2020-06-16 09:01:52,691", + "created": 1592290912.6917696, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -16529,15 +18326,15 @@ "lineno": 22, "message": "Result (Returnvalue of this_state()): 'state_c' ()", "module": "test", - "msecs": 56.131839752197266, + "msecs": 691.7695999145508, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 690.1443004608154, + "relativeCreated": 682.7235221862793, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { @@ -16546,8 +18343,8 @@ "'state_c'", "" ], - "asctime": "2019-12-27 08:39:30,056", - "created": 1577432370.056263, + "asctime": "2020-06-16 09:01:52,691", + "created": 1592290912.6918068, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -16557,41 +18354,41 @@ "lineno": 26, "message": "Expectation (Returnvalue of this_state()): result = 'state_c' ()", "module": "test", - "msecs": 56.262969970703125, + "msecs": 691.8067932128906, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 690.2754306793213, + "relativeCreated": 682.7607154846191, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" } ], - "msecs": 56.392669677734375, + "msecs": 691.8437480926514, "msg": "Returnvalue of this_state() is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 690.4051303863525, + "relativeCreated": 682.7976703643799, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread", - "time_consumption": 0.00012969970703125 + "time_consumption": 3.695487976074219e-05 } ], - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread", - "time_consumption": 0.0008327960968017578, - "time_finished": "2019-12-27 08:39:30,056", - "time_start": "2019-12-27 08:39:30,055" + "time_consumption": 0.000244140625, + "time_finished": "2020-06-16 09:01:52,691", + "time_start": "2020-06-16 09:01:52,691" }, "_vAtUQHcyEemrUqotql_Blw": { "args": null, - "asctime": "2019-12-27 08:39:30,056", - "created": 1577432370.0566595, + "asctime": "2020-06-16 09:01:52,691", + "created": 1592290912.691926, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -16602,19 +18399,19 @@ "message": "_vAtUQHcyEemrUqotql_Blw", "module": "__init__", "moduleLogger": [], - "msecs": 56.65946006774902, + "msecs": 691.9260025024414, "msg": "_vAtUQHcyEemrUqotql_Blw", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/__init__.py", - "process": 8624, + "pathname": "/user_data/data/dirk/prj/unittest/state_machine/unittest/src/tests/__init__.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 690.6719207763672, + "relativeCreated": 682.8799247741699, "stack_info": null, "testcaseLogger": [ { "args": [], - "asctime": "2019-12-27 08:39:30,057", - "created": 1577432370.0570261, + "asctime": "2020-06-16 09:01:52,692", + "created": 1592290912.6920295, "exc_info": null, "exc_text": null, "filename": "test_interface.py", @@ -16632,48 +18429,48 @@ "None", "'state_c'" ], - "asctime": "2019-12-27 08:39:30,056", - "created": 1577432370.0568738, + "asctime": "2020-06-16 09:01:52,691", + "created": 1592290912.6919856, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__set_state__", "levelname": "DEBUG", "levelno": 10, - "lineno": 174, + "lineno": 176, "message": "StateMachine: State change ('__init__'): None -> 'state_c'", "module": "__init__", - "msecs": 56.87379837036133, + "msecs": 691.9856071472168, "msg": "%s State change (%s): %s -> %s", "name": "STATE_MACHINE", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/state_machine/__init__.py", - "process": 8624, + "pathname": "src/state_machine/__init__.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 690.8862590789795, + "relativeCreated": 682.9395294189453, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" } ], - "msecs": 57.02614784240723, + "msecs": 692.0294761657715, "msg": "Initialising the state machine with state_c", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_interface.py", - "process": 8624, + "pathname": "src/tests/test_interface.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 691.0386085510254, + "relativeCreated": 682.9833984375, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread", - "time_consumption": 0.00015234947204589844 + "time_consumption": 4.38690185546875e-05 }, { "args": [ "True", "" ], - "asctime": "2019-12-27 08:39:30,057", - "created": 1577432370.0575268, + "asctime": "2020-06-16 09:01:52,692", + "created": 1592290912.6921577, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -16690,8 +18487,8 @@ "True", "" ], - "asctime": "2019-12-27 08:39:30,057", - "created": 1577432370.0572124, + "asctime": "2020-06-16 09:01:52,692", + "created": 1592290912.6920836, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -16701,15 +18498,15 @@ "lineno": 22, "message": "Result (Returnvalue of this_state_is(state_c)): True ()", "module": "test", - "msecs": 57.21235275268555, + "msecs": 692.0835971832275, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 691.2248134613037, + "relativeCreated": 683.037519454956, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { @@ -16718,8 +18515,8 @@ "True", "" ], - "asctime": "2019-12-27 08:39:30,057", - "created": 1577432370.0573523, + "asctime": "2020-06-16 09:01:52,692", + "created": 1592290912.6921196, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -16729,37 +18526,37 @@ "lineno": 26, "message": "Expectation (Returnvalue of this_state_is(state_c)): result = True ()", "module": "test", - "msecs": 57.352304458618164, + "msecs": 692.1195983886719, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 691.3647651672363, + "relativeCreated": 683.0735206604004, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" } ], - "msecs": 57.52682685852051, + "msecs": 692.1577453613281, "msg": "Returnvalue of this_state_is(state_c) is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 691.5392875671387, + "relativeCreated": 683.1116676330566, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread", - "time_consumption": 0.00017452239990234375 + "time_consumption": 3.814697265625e-05 }, { "args": [ "False", "" ], - "asctime": "2019-12-27 08:39:30,057", - "created": 1577432370.057946, + "asctime": "2020-06-16 09:01:52,692", + "created": 1592290912.6922789, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -16776,8 +18573,8 @@ "False", "" ], - "asctime": "2019-12-27 08:39:30,057", - "created": 1577432370.0576987, + "asctime": "2020-06-16 09:01:52,692", + "created": 1592290912.692209, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -16787,15 +18584,15 @@ "lineno": 22, "message": "Result (Returnvalue of this_state_is(state_b)): False ()", "module": "test", - "msecs": 57.698726654052734, + "msecs": 692.209005355835, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 691.7111873626709, + "relativeCreated": 683.1629276275635, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { @@ -16804,8 +18601,8 @@ "False", "" ], - "asctime": "2019-12-27 08:39:30,057", - "created": 1577432370.0578227, + "asctime": "2020-06-16 09:01:52,692", + "created": 1592290912.6922438, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -16815,41 +18612,41 @@ "lineno": 26, "message": "Expectation (Returnvalue of this_state_is(state_b)): result = False ()", "module": "test", - "msecs": 57.82270431518555, + "msecs": 692.2438144683838, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 691.8351650238037, + "relativeCreated": 683.1977367401123, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" } ], - "msecs": 57.945966720581055, + "msecs": 692.2788619995117, "msg": "Returnvalue of this_state_is(state_b) is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 691.9584274291992, + "relativeCreated": 683.2327842712402, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread", - "time_consumption": 0.0001232624053955078 + "time_consumption": 3.504753112792969e-05 } ], - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread", - "time_consumption": 0.0012865066528320312, - "time_finished": "2019-12-27 08:39:30,057", - "time_start": "2019-12-27 08:39:30,056" + "time_consumption": 0.0003528594970703125, + "time_finished": "2020-06-16 09:01:52,692", + "time_start": "2020-06-16 09:01:52,691" }, "_w49d4HcHEem_Z9BBpwIuJw": { "args": null, - "asctime": "2019-12-27 08:39:29,427", - "created": 1577432369.4279351, + "asctime": "2020-06-16 09:01:52,065", + "created": 1592290912.0656233, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -16860,19 +18657,19 @@ "message": "_w49d4HcHEem_Z9BBpwIuJw", "module": "__init__", "moduleLogger": [], - "msecs": 427.9351234436035, + "msecs": 65.62328338623047, "msg": "_w49d4HcHEem_Z9BBpwIuJw", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/__init__.py", - "process": 8624, + "pathname": "/user_data/data/dirk/prj/unittest/state_machine/unittest/src/tests/__init__.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 61.94758415222168, + "relativeCreated": 56.577205657958984, "stack_info": null, "testcaseLogger": [ { "args": [], - "asctime": "2019-12-27 08:39:29,428", - "created": 1577432369.4281826, + "asctime": "2020-06-16 09:01:52,065", + "created": 1592290912.06587, "exc_info": null, "exc_text": null, "filename": "test_init.py", @@ -16890,48 +18687,48 @@ "None", "'state_c'" ], - "asctime": "2019-12-27 08:39:29,428", - "created": 1577432369.4281175, + "asctime": "2020-06-16 09:01:52,065", + "created": 1592290912.0658102, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__set_state__", "levelname": "DEBUG", "levelno": 10, - "lineno": 174, + "lineno": 176, "message": "StateMachine: State change ('__init__'): None -> 'state_c'", "module": "__init__", - "msecs": 428.1175136566162, + "msecs": 65.8102035522461, "msg": "%s State change (%s): %s -> %s", "name": "STATE_MACHINE", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/state_machine/__init__.py", - "process": 8624, + "pathname": "src/state_machine/__init__.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 62.129974365234375, + "relativeCreated": 56.76412582397461, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" } ], - "msecs": 428.18260192871094, + "msecs": 65.87004661560059, "msg": "Initialising the state machine with state_c", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_init.py", - "process": 8624, + "pathname": "src/tests/test_init.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 62.1950626373291, + "relativeCreated": 56.8239688873291, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread", - "time_consumption": 6.508827209472656e-05 + "time_consumption": 5.984306335449219e-05 }, { "args": [ "'state_c'", "" ], - "asctime": "2019-12-27 08:39:29,428", - "created": 1577432369.4283307, + "asctime": "2020-06-16 09:01:52,066", + "created": 1592290912.06601, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -16948,8 +18745,8 @@ "'state_c'", "" ], - "asctime": "2019-12-27 08:39:29,428", - "created": 1577432369.4282458, + "asctime": "2020-06-16 09:01:52,065", + "created": 1592290912.065932, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -16959,15 +18756,15 @@ "lineno": 22, "message": "Result (State after initialisation): 'state_c' ()", "module": "test", - "msecs": 428.24578285217285, + "msecs": 65.93203544616699, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 62.258243560791016, + "relativeCreated": 56.88595771789551, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { @@ -16976,8 +18773,8 @@ "'state_c'", "" ], - "asctime": "2019-12-27 08:39:29,428", - "created": 1577432369.4282875, + "asctime": "2020-06-16 09:01:52,065", + "created": 1592290912.0659726, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -16987,41 +18784,41 @@ "lineno": 26, "message": "Expectation (State after initialisation): result = 'state_c' ()", "module": "test", - "msecs": 428.2875061035156, + "msecs": 65.97256660461426, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 62.29996681213379, + "relativeCreated": 56.92648887634277, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" } ], - "msecs": 428.330659866333, + "msecs": 66.0099983215332, "msg": "State after initialisation is correct (Content %s and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 62.34312057495117, + "relativeCreated": 56.96392059326172, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread", - "time_consumption": 4.315376281738281e-05 + "time_consumption": 3.743171691894531e-05 } ], - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread", - "time_consumption": 0.0003955364227294922, - "time_finished": "2019-12-27 08:39:29,428", - "time_start": "2019-12-27 08:39:29,427" + "time_consumption": 0.0003867149353027344, + "time_finished": "2020-06-16 09:01:52,066", + "time_start": "2020-06-16 09:01:52,065" }, "_yVA9oHcyEemrUqotql_Blw": { "args": null, - "asctime": "2019-12-27 08:39:30,058", - "created": 1577432370.0582132, + "asctime": "2020-06-16 09:01:52,692", + "created": 1592290912.6923645, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -17032,19 +18829,19 @@ "message": "_yVA9oHcyEemrUqotql_Blw", "module": "__init__", "moduleLogger": [], - "msecs": 58.213233947753906, + "msecs": 692.3644542694092, "msg": "_yVA9oHcyEemrUqotql_Blw", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/__init__.py", - "process": 8624, + "pathname": "/user_data/data/dirk/prj/unittest/state_machine/unittest/src/tests/__init__.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 692.2256946563721, + "relativeCreated": 683.3183765411377, "stack_info": null, "testcaseLogger": [ { "args": [], - "asctime": "2019-12-27 08:39:30,309", - "created": 1577432370.3094988, + "asctime": "2020-06-16 09:01:52,942", + "created": 1592290912.9427712, "exc_info": null, "exc_text": null, "filename": "test_interface.py", @@ -17062,26 +18859,26 @@ "None", "'state_a'" ], - "asctime": "2019-12-27 08:39:30,058", - "created": 1577432370.0584168, + "asctime": "2020-06-16 09:01:52,692", + "created": 1592290912.6924248, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__set_state__", "levelname": "DEBUG", "levelno": 10, - "lineno": 174, + "lineno": 176, "message": "StateMachine: State change ('__init__'): None -> 'state_a'", "module": "__init__", - "msecs": 58.41684341430664, + "msecs": 692.4247741699219, "msg": "%s State change (%s): %s -> %s", "name": "STATE_MACHINE", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/state_machine/__init__.py", - "process": 8624, + "pathname": "src/state_machine/__init__.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 692.4293041229248, + "relativeCreated": 683.3786964416504, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { @@ -17091,34 +18888,34 @@ "'state_a'", "'state_b'" ], - "asctime": "2019-12-27 08:39:30,058", - "created": 1577432370.0586488, + "asctime": "2020-06-16 09:01:52,692", + "created": 1592290912.6924949, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__set_state__", "levelname": "DEBUG", "levelno": 10, - "lineno": 174, + "lineno": 176, "message": "StateMachine: State change ('condition_a'): 'state_a' -> 'state_b'", "module": "__init__", - "msecs": 58.64882469177246, + "msecs": 692.4948692321777, "msg": "%s State change (%s): %s -> %s", "name": "STATE_MACHINE", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/state_machine/__init__.py", - "process": 8624, + "pathname": "src/state_machine/__init__.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 692.6612854003906, + "relativeCreated": 683.4487915039062, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { "args": [ 0.25 ], - "asctime": "2019-12-27 08:39:30,309", - "created": 1577432370.3091664, + "asctime": "2020-06-16 09:01:52,942", + "created": 1592290912.9426441, "exc_info": null, "exc_text": null, "filename": "test_interface.py", @@ -17128,39 +18925,39 @@ "lineno": 33, "message": "Waiting for 0.25s", "module": "test_interface", - "msecs": 309.16643142700195, + "msecs": 942.6441192626953, "msg": "Waiting for %.2fs", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_interface.py", - "process": 8624, + "pathname": "src/tests/test_interface.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 943.1788921356201, + "relativeCreated": 933.5980415344238, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" } ], - "msecs": 309.49878692626953, + "msecs": 942.7711963653564, "msg": "Running state machine test sequence.", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/tests/test_interface.py", - "process": 8624, + "pathname": "src/tests/test_interface.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 943.5112476348877, + "relativeCreated": 933.725118637085, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread", - "time_consumption": 0.0003323554992675781 + "time_consumption": 0.0001270771026611328 }, { "args": [ - "0.25096559524536133", + "0.25031614303588867", "0.2", "0.3", "" ], - "asctime": "2019-12-27 08:39:30,310", - "created": 1577432370.3101196, + "asctime": "2020-06-16 09:01:52,942", + "created": 1592290912.9429736, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -17168,17 +18965,17 @@ "levelname": "INFO", "levelno": 20, "lineno": 218, - "message": "Return Value of this_state_duration() is correct (Content 0.25096559524536133 in [0.2 ... 0.3] and Type is ).", + "message": "Return Value of this_state_duration() is correct (Content 0.25031614303588867 in [0.2 ... 0.3] and Type is ).", "module": "test", "moduleLogger": [ { "args": [ "Return Value of this_state_duration()", - "0.25096559524536133", + "0.25031614303588867", "" ], - "asctime": "2019-12-27 08:39:30,309", - "created": 1577432370.3097856, + "asctime": "2020-06-16 09:01:52,942", + "created": 1592290912.9428692, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -17186,17 +18983,17 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 22, - "message": "Result (Return Value of this_state_duration()): 0.25096559524536133 ()", + "message": "Result (Return Value of this_state_duration()): 0.25031614303588867 ()", "module": "test", - "msecs": 309.7856044769287, + "msecs": 942.8691864013672, "msg": "Result (%s): %s (%s)", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 943.7980651855469, + "relativeCreated": 933.8231086730957, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" }, { @@ -17205,8 +19002,8 @@ "0.2", "0.3" ], - "asctime": "2019-12-27 08:39:30,309", - "created": 1577432370.3099647, + "asctime": "2020-06-16 09:01:52,942", + "created": 1592290912.9429228, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -17216,40 +19013,40 @@ "lineno": 30, "message": "Expectation (Return Value of this_state_duration()): 0.2 <= result <= 0.3", "module": "test", - "msecs": 309.964656829834, + "msecs": 942.922830581665, "msg": "Expectation (%s): %s <= result <= %s", "name": "__unittest__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 943.9771175384521, + "relativeCreated": 933.8767528533936, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread" } ], - "msecs": 310.11962890625, + "msecs": 942.9736137390137, "msg": "Return Value of this_state_duration() is correct (Content %s in [%s ... %s] and Type is %s).", "name": "__tLogger__", - "pathname": "/user_data/data/dirk/prj/modules/state_machine/unittest/src/unittest/test.py", - "process": 8624, + "pathname": "src/unittest/test.py", + "process": 11805, "processName": "MainProcess", - "relativeCreated": 944.1320896148682, + "relativeCreated": 933.9275360107422, "stack_info": null, - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread", - "time_consumption": 0.00015497207641601562 + "time_consumption": 5.078315734863281e-05 } ], - "thread": 140234569094976, + "thread": 140551289812800, "threadName": "MainThread", - "time_consumption": 0.2519063949584961, - "time_finished": "2019-12-27 08:39:30,310", - "time_start": "2019-12-27 08:39:30,058" + "time_consumption": 0.2506091594696045, + "time_finished": "2020-06-16 09:01:52,942", + "time_start": "2020-06-16 09:01:52,692" } }, "testrun_id": "p3", - "time_consumption": 1.649573802947998, + "time_consumption": 1.6362512111663818, "uid_list_sorted": [ "_w49d4HcHEem_Z9BBpwIuJw", "_j2FvkHcqEemrUqotql_Blw", @@ -17269,11 +19066,12 @@ "_XzMFcHYZEem_kd-7nxt1sg", "_YrdgQHbUEemIm_1APUisDQ", "_b_t78Hb4EemzkK7kGUMNfw", - "_e4QPUHb4EemzkK7kGUMNfw" + "_e4QPUHb4EemzkK7kGUMNfw", + "_QofFgK-aEeqZm7ouFR1drQ" ] } ], "unittest_information": { - "Version": "11a793890aa5d8a2bdad647cbefcc716" + "Version": "04693b5f87703f8bba98048b7730760f" } } \ No newline at end of file diff --git a/_testresults_/unittest.pdf b/_testresults_/unittest.pdf index 407b2b1..15f1f24 100644 Binary files a/_testresults_/unittest.pdf and b/_testresults_/unittest.pdf differ