diff --git a/__init__.py b/__init__.py index 0396284..2dba9bb 100644 --- a/__init__.py +++ b/__init__.py @@ -36,8 +36,11 @@ import sys import time -logger_name = 'SOCKET_PROTOCOL' -logger = logging.getLogger(logger_name) +try: + from config import APP_NAME as ROOT_LOGGER_NAME +except ImportError: + ROOT_LOGGER_NAME = 'root' +logger = logging.getLogger(ROOT_LOGGER_NAME).getChild(__name__) __DESCRIPTION__ = """The Module {\\tt %s} is designed to pack and unpack data for serial transportation. @@ -75,10 +78,10 @@ class callback_storage(dict): return self[None][None] except KeyError: pass # nothing to append - return None + return (None, None, None) def add(self, service_id, data_id, callback, *args, **kwargs): - if self.get(service_id, data_id) is not None: + if self.get(service_id, data_id) != (None, None, None): raise RegistrationError("Callback for service_id (%s) and data_id (%s) already exists" % (repr(service_id), repr(data_id))) if service_id not in self: self[service_id] = {} diff --git a/_testresults_/unittest.json b/_testresults_/unittest.json index 65a6195..2adccd6 100644 --- a/_testresults_/unittest.json +++ b/_testresults_/unittest.json @@ -1,11 +1,11 @@ { "coverage_information": [ { - "branch_coverage": 100.0, + "branch_coverage": 96.77, "filepath": "/user_data/data/dirk/prj/unittest/socket_protocol/pylibs/socket_protocol", "files": [ { - "branch_coverage": 100.0, + "branch_coverage": 96.77, "filepath": "/user_data/data/dirk/prj/unittest/socket_protocol/pylibs/socket_protocol/__init__.py", "fragments": [ { @@ -53,20 +53,10 @@ "end": 38, "start": 37 }, - { - "coverage_state": "covered", - "end": 40, - "start": 39 - }, - { - "coverage_state": "clean", - "end": 42, - "start": 41 - }, { "coverage_state": "covered", "end": 43, - "start": 43 + "start": 39 }, { "coverage_state": "clean", @@ -80,63 +70,63 @@ }, { "coverage_state": "clean", - "end": 49, + "end": 48, "start": 47 }, { "coverage_state": "covered", - "end": 51, + "end": 49, + "start": 49 + }, + { + "coverage_state": "clean", + "end": 52, "start": 50 }, + { + "coverage_state": "covered", + "end": 54, + "start": 53 + }, { "coverage_state": "clean", - "end": 53, - "start": 52 + "end": 56, + "start": 55 }, { "coverage_state": "covered", - "end": 56, - "start": 54 - }, - { - "coverage_state": "clean", - "end": 57, + "end": 59, "start": 57 }, - { - "coverage_state": "covered", - "end": 78, - "start": 58 - }, { "coverage_state": "clean", - "end": 79, - "start": 79 + "end": 60, + "start": 60 }, { "coverage_state": "covered", - "end": 85, - "start": 80 + "end": 81, + "start": 61 }, { "coverage_state": "clean", - "end": 87, - "start": 86 + "end": 82, + "start": 82 }, { "coverage_state": "covered", - "end": 92, - "start": 88 + "end": 88, + "start": 83 }, { "coverage_state": "clean", - "end": 93, - "start": 93 + "end": 90, + "start": 89 }, { "coverage_state": "covered", "end": 95, - "start": 94 + "start": 91 }, { "coverage_state": "clean", @@ -180,93 +170,93 @@ }, { "coverage_state": "clean", - "end": 109, + "end": 108, "start": 108 }, { "coverage_state": "covered", "end": 110, - "start": 110 + "start": 109 }, { "coverage_state": "clean", - "end": 136, + "end": 112, "start": 111 }, { "coverage_state": "covered", - "end": 137, - "start": 137 + "end": 113, + "start": 113 }, { "coverage_state": "clean", - "end": 138, - "start": 138 + "end": 139, + "start": 114 }, { "coverage_state": "covered", - "end": 148, - "start": 139 + "end": 140, + "start": 140 }, { "coverage_state": "clean", - "end": 149, - "start": 149 + "end": 141, + "start": 141 }, { "coverage_state": "covered", - "end": 150, - "start": 150 + "end": 151, + "start": 142 }, { "coverage_state": "clean", - "end": 156, - "start": 151 + "end": 152, + "start": 152 }, { "coverage_state": "covered", - "end": 157, - "start": 157 + "end": 153, + "start": 153 }, { "coverage_state": "clean", - "end": 158, - "start": 158 + "end": 159, + "start": 154 }, { "coverage_state": "covered", - "end": 165, - "start": 159 + "end": 160, + "start": 160 }, { "coverage_state": "clean", - "end": 171, - "start": 166 + "end": 161, + "start": 161 }, { "coverage_state": "covered", - "end": 177, - "start": 172 + "end": 168, + "start": 162 }, { "coverage_state": "clean", - "end": 182, - "start": 178 + "end": 174, + "start": 169 }, { "coverage_state": "covered", - "end": 196, - "start": 183 + "end": 180, + "start": 175 }, { "coverage_state": "clean", - "end": 197, - "start": 197 + "end": 185, + "start": 181 }, { "coverage_state": "covered", "end": 200, - "start": 198 + "start": 186 }, { "coverage_state": "clean", @@ -275,29 +265,59 @@ }, { "coverage_state": "covered", - "end": 205, + "end": 202, "start": 202 }, + { + "coverage_state": "uncovered", + "end": 203, + "start": 203 + }, { "coverage_state": "clean", + "end": 204, + "start": 204 + }, + { + "coverage_state": "covered", + "end": 205, + "start": 205 + }, + { + "coverage_state": "uncovered", "end": 206, "start": 206 }, { - "coverage_state": "covered", - "end": 208, + "coverage_state": "clean", + "end": 207, "start": 207 }, { - "coverage_state": "clean", + "coverage_state": "covered", + "end": 208, + "start": 208 + }, + { + "coverage_state": "uncovered", "end": 209, "start": 209 }, { - "coverage_state": "covered", - "end": 214, + "coverage_state": "clean", + "end": 210, "start": 210 }, + { + "coverage_state": "covered", + "end": 211, + "start": 211 + }, + { + "coverage_state": "uncovered", + "end": 214, + "start": 212 + }, { "coverage_state": "clean", "end": 215, @@ -315,128 +335,138 @@ }, { "coverage_state": "covered", - "end": 224, + "end": 223, "start": 220 }, { "coverage_state": "clean", - "end": 225, + "end": 224, + "start": 224 + }, + { + "coverage_state": "covered", + "end": 226, "start": 225 }, + { + "coverage_state": "clean", + "end": 227, + "start": 227 + }, { "coverage_state": "covered", - "end": 228, - "start": 226 + "end": 232, + "start": 228 }, { "coverage_state": "clean", - "end": 229, - "start": 229 - }, - { - "coverage_state": "covered", - "end": 230, - "start": 230 - }, - { - "coverage_state": "clean", - "end": 231, - "start": 231 - }, - { - "coverage_state": "covered", "end": 233, - "start": 232 + "start": 233 }, { - "coverage_state": "clean", - "end": 234, + "coverage_state": "covered", + "end": 236, "start": 234 }, - { - "coverage_state": "covered", - "end": 238, - "start": 235 - }, { "coverage_state": "clean", - "end": 239, - "start": 239 + "end": 237, + "start": 237 }, { "coverage_state": "covered", - "end": 241, - "start": 240 + "end": 242, + "start": 238 }, { "coverage_state": "clean", + "end": 243, + "start": 243 + }, + { + "coverage_state": "covered", + "end": 246, + "start": 244 + }, + { + "coverage_state": "clean", + "end": 247, + "start": 247 + }, + { + "coverage_state": "covered", "end": 248, - "start": 242 + "start": 248 }, { - "coverage_state": "covered", - "end": 250, + "coverage_state": "clean", + "end": 249, "start": 249 }, + { + "coverage_state": "covered", + "end": 251, + "start": 250 + }, { "coverage_state": "clean", - "end": 253, - "start": 251 + "end": 252, + "start": 252 }, { "coverage_state": "covered", - "end": 261, - "start": 254 + "end": 256, + "start": 253 }, { "coverage_state": "clean", - "end": 262, - "start": 262 + "end": 257, + "start": 257 + }, + { + "coverage_state": "covered", + "end": 259, + "start": 258 + }, + { + "coverage_state": "clean", + "end": 266, + "start": 260 }, { "coverage_state": "covered", "end": 268, - "start": 263 + "start": 267 }, { "coverage_state": "clean", - "end": 272, + "end": 271, "start": 269 }, { "coverage_state": "covered", - "end": 278, - "start": 273 + "end": 279, + "start": 272 }, { "coverage_state": "clean", - "end": 279, - "start": 279 - }, - { - "coverage_state": "covered", - "end": 284, + "end": 280, "start": 280 }, - { - "coverage_state": "clean", - "end": 285, - "start": 285 - }, { "coverage_state": "covered", - "end": 292, - "start": 286 + "end": 286, + "start": 281 }, { "coverage_state": "clean", - "end": 293, - "start": 293 + "end": 290, + "start": 287 }, { "coverage_state": "covered", "end": 296, - "start": 294 + "start": 291 }, { "coverage_state": "clean", @@ -445,9 +475,19 @@ }, { "coverage_state": "covered", - "end": 310, + "end": 302, "start": 298 }, + { + "coverage_state": "clean", + "end": 303, + "start": 303 + }, + { + "coverage_state": "covered", + "end": 310, + "start": 304 + }, { "coverage_state": "clean", "end": 311, @@ -455,138 +495,118 @@ }, { "coverage_state": "covered", - "end": 313, + "end": 314, "start": 312 }, { "coverage_state": "clean", - "end": 314, - "start": 314 - }, - { - "coverage_state": "covered", "end": 315, "start": 315 }, { - "coverage_state": "clean", - "end": 333, + "coverage_state": "covered", + "end": 328, "start": 316 }, + { + "coverage_state": "clean", + "end": 329, + "start": 329 + }, { "coverage_state": "covered", - "end": 335, + "end": 331, + "start": 330 + }, + { + "coverage_state": "clean", + "end": 332, + "start": 332 + }, + { + "coverage_state": "covered", + "end": 333, + "start": 333 + }, + { + "coverage_state": "clean", + "end": 351, "start": 334 }, - { - "coverage_state": "clean", - "end": 336, - "start": 336 - }, { "coverage_state": "covered", - "end": 337, - "start": 337 + "end": 353, + "start": 352 }, { "coverage_state": "clean", - "end": 360, - "start": 338 + "end": 354, + "start": 354 }, { "coverage_state": "covered", - "end": 361, - "start": 361 + "end": 355, + "start": 355 }, { "coverage_state": "clean", - "end": 362, - "start": 362 + "end": 378, + "start": 356 }, { "coverage_state": "covered", - "end": 363, - "start": 363 + "end": 379, + "start": 379 }, { "coverage_state": "clean", - "end": 375, - "start": 364 + "end": 380, + "start": 380 }, { "coverage_state": "covered", - "end": 388, - "start": 376 + "end": 381, + "start": 381 }, { "coverage_state": "clean", - "end": 389, - "start": 389 + "end": 393, + "start": 382 }, { "coverage_state": "covered", - "end": 390, - "start": 390 + "end": 406, + "start": 394 }, { "coverage_state": "clean", - "end": 394, - "start": 391 - }, - { - "coverage_state": "covered", - "end": 395, - "start": 395 - }, - { - "coverage_state": "clean", - "end": 396, - "start": 396 - }, - { - "coverage_state": "covered", - "end": 399, - "start": 397 - }, - { - "coverage_state": "clean", - "end": 400, - "start": 400 - }, - { - "coverage_state": "covered", - "end": 401, - "start": 401 - }, - { - "coverage_state": "clean", - "end": 402, - "start": 402 - }, - { - "coverage_state": "covered", "end": 407, - "start": 403 + "start": 407 }, { - "coverage_state": "clean", + "coverage_state": "covered", "end": 408, "start": 408 }, { - "coverage_state": "covered", - "end": 410, + "coverage_state": "clean", + "end": 412, "start": 409 }, + { + "coverage_state": "covered", + "end": 413, + "start": 413 + }, { "coverage_state": "clean", - "end": 411, - "start": 411 + "end": 414, + "start": 414 }, { "coverage_state": "covered", "end": 417, - "start": 412 + "start": 415 }, { "coverage_state": "clean", @@ -595,18 +615,28 @@ }, { "coverage_state": "covered", - "end": 424, + "end": 419, "start": 419 }, { "coverage_state": "clean", + "end": 420, + "start": 420 + }, + { + "coverage_state": "covered", "end": 425, - "start": 425 + "start": 421 + }, + { + "coverage_state": "clean", + "end": 426, + "start": 426 }, { "coverage_state": "covered", "end": 428, - "start": 426 + "start": 427 }, { "coverage_state": "clean", @@ -615,100 +645,130 @@ }, { "coverage_state": "covered", - "end": 434, + "end": 435, "start": 430 }, { "coverage_state": "clean", - "end": 435, - "start": 435 - }, - { - "coverage_state": "covered", - "end": 438, + "end": 436, "start": 436 }, - { - "coverage_state": "clean", - "end": 440, - "start": 439 - }, { "coverage_state": "covered", - "end": 441, - "start": 441 + "end": 442, + "start": 437 }, { "coverage_state": "clean", - "end": 464, - "start": 442 + "end": 443, + "start": 443 }, { "coverage_state": "covered", - "end": 466, - "start": 465 + "end": 446, + "start": 444 }, { "coverage_state": "clean", - "end": 467, - "start": 467 + "end": 447, + "start": 447 }, { "coverage_state": "covered", - "end": 473, - "start": 468 + "end": 452, + "start": 448 }, { "coverage_state": "clean", - "end": 474, - "start": 474 + "end": 453, + "start": 453 }, { "coverage_state": "covered", - "end": 477, - "start": 475 + "end": 456, + "start": 454 }, { "coverage_state": "clean", - "end": 478, - "start": 478 + "end": 458, + "start": 457 }, { "coverage_state": "covered", - "end": 479, - "start": 479 + "end": 459, + "start": 459 }, { "coverage_state": "clean", - "end": 480, - "start": 480 - }, - { - "coverage_state": "covered", "end": 482, - "start": 481 + "start": 460 }, { - "coverage_state": "clean", - "end": 483, + "coverage_state": "covered", + "end": 484, "start": 483 }, { - "coverage_state": "covered", + "coverage_state": "clean", "end": 485, - "start": 484 + "start": 485 + }, + { + "coverage_state": "covered", + "end": 491, + "start": 486 + }, + { + "coverage_state": "clean", + "end": 492, + "start": 492 + }, + { + "coverage_state": "covered", + "end": 495, + "start": 493 + }, + { + "coverage_state": "clean", + "end": 496, + "start": 496 + }, + { + "coverage_state": "covered", + "end": 497, + "start": 497 + }, + { + "coverage_state": "clean", + "end": 498, + "start": 498 + }, + { + "coverage_state": "covered", + "end": 500, + "start": 499 + }, + { + "coverage_state": "clean", + "end": 501, + "start": 501 + }, + { + "coverage_state": "covered", + "end": 503, + "start": 502 }, { "coverage_state": "clean", "end": null, - "start": 486 + "start": 504 } ], - "line_coverage": 100.0, + "line_coverage": 97.82, "name": "socket_protocol.__init__.py" } ], - "line_coverage": 100.0, + "line_coverage": 97.82, "name": "socket_protocol" } ], @@ -735,9 +795,9 @@ "specification": {}, "system_information": { "Architecture": "64bit", - "Distribution": "LinuxMint 19.3 tricia", + "Distribution": "Linux Mint 20 ulyana", "Hostname": "ahorn", - "Kernel": "5.3.0-28-generic (#30~18.04.1-Ubuntu SMP Fri Jan 17 06:14:09 UTC 2020)", + "Kernel": "5.4.0-58-generic (#64-Ubuntu SMP Wed Dec 9 08:16:25 UTC 2020)", "Machine": "x86_64", "Path": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest", "System": "Linux", @@ -747,19 +807,19 @@ "Dependencies": [ [ "stringtools", - "88a3eed174bd2239a6c1d928081e5b6d" + "3eac28a80770a728e1f521fadb92868d" ] ], "Description": "The Module {\\tt socket\\_protocol} is designed to pack and unpack data for serial transportation.\nFor more Information read the sphinx documentation.", "Name": "socket_protocol", "State": "Released", "Supported Interpreters": "python2, python3", - "Version": "44bfc23658f5a000bcabcf2a34875620" + "Version": "b6a37b5ebade9bbfaf8d4b1ce203f822" }, "testrun_list": [ { "heading_dict": {}, - "interpreter": "python 2.7.17 (final)", + "interpreter": "python 2.7.18 (final)", "name": "Default Testsession name", "number_of_failed_tests": 0, "number_of_possibly_failed_tests": 0, @@ -775,8 +835,8 @@ "testcases": { "socket_protocol.pure_json_protocol: Authentification processed without secret.": { "args": null, - "asctime": "2020-01-29 07:23:18,047", - "created": 1580278998.047247, + "asctime": "2020-12-21 22:33:00,256", + "created": 1608586380.25657, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -787,18 +847,18 @@ "message": "socket_protocol.pure_json_protocol: Authentification processed without secret.", "module": "__init__", "moduleLogger": [], - "msecs": 47.24693298339844, + "msecs": 256.57010078430176, "msg": "socket_protocol.pure_json_protocol: Authentification processed without secret.", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 10939.647912979126, + "relativeCreated": 10950.309038162231, "testcaseLogger": [ { "args": [], - "asctime": "2020-01-29 07:23:18,048", - "created": 1580278998.048621, + "asctime": "2020-12-21 22:33:00,257", + "created": 1608586380.257375, "exc_info": null, "exc_text": null, "filename": "test_handling_errors.py", @@ -813,121 +873,121 @@ "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:18,047", - "created": 1580278998.047543, + "asctime": "2020-12-21 22:33:00,256", + "created": 1608586380.256762, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 295, + "lineno": 313, "message": "SJP: Cleaning up receive-buffer", "module": "__init__", - "msecs": 47.54304885864258, + "msecs": 256.7620277404785, "msg": "%s Cleaning up receive-buffer", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 10939.94402885437, - "thread": 140487175731008, + "relativeCreated": 10950.500965118408, + "thread": 140534768363328, "threadName": "MainThread" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:18,047", - "created": 1580278998.0479, + "asctime": "2020-12-21 22:33:00,256", + "created": 1608586380.256957, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 199, + "lineno": 217, "message": "SJP: Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "module": "__init__", - "msecs": 47.89996147155762, + "msecs": 256.9570541381836, "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 10940.300941467285, - "thread": 140487175731008, + "relativeCreated": 10950.695991516113, + "thread": 140534768363328, "threadName": "MainThread" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:18,048", - "created": 1580278998.048101, + "asctime": "2020-12-21 22:33:00,257", + "created": 1608586380.257082, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 295, + "lineno": 313, "message": "SJP: Cleaning up receive-buffer", "module": "__init__", - "msecs": 48.100948333740234, + "msecs": 257.0819854736328, "msg": "%s Cleaning up receive-buffer", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 10940.501928329468, - "thread": 140487175731008, + "relativeCreated": 10950.820922851562, + "thread": 140534768363328, "threadName": "MainThread" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:18,048", - "created": 1580278998.048411, + "asctime": "2020-12-21 22:33:00,257", + "created": 1608586380.257265, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 199, + "lineno": 217, "message": "SJP: Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "module": "__init__", - "msecs": 48.410892486572266, + "msecs": 257.2650909423828, "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 10940.8118724823, - "thread": 140487175731008, + "relativeCreated": 10951.004028320312, + "thread": 140534768363328, "threadName": "MainThread" } ], - "msecs": 48.62093925476074, + "msecs": 257.37500190734863, "msg": "Authentification with no secret definition (pure_json_protocol).", "name": "__tLogger__", "pathname": "src/tests/test_handling_errors.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 10941.021919250488, - "thread": 140487175731008, + "relativeCreated": 10951.113939285278, + "thread": 140534768363328, "threadName": "MainThread", - "time_consumption": 0.00021004676818847656 + "time_consumption": 0.00010991096496582031 }, { "args": [ "False", "" ], - "asctime": "2020-01-29 07:23:18,049", - "created": 1580278998.049191, + "asctime": "2020-12-21 22:33:00,257", + "created": 1608586380.257721, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -944,8 +1004,8 @@ "False", "" ], - "asctime": "2020-01-29 07:23:18,048", - "created": 1580278998.048881, + "asctime": "2020-12-21 22:33:00,257", + "created": 1608586380.257542, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -955,14 +1015,14 @@ "lineno": 22, "message": "Result (Return value of authentification): False ()", "module": "test", - "msecs": 48.88105392456055, + "msecs": 257.5418949127197, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 10941.282033920288, - "thread": 140487175731008, + "relativeCreated": 10951.28083229065, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -971,8 +1031,8 @@ "False", "" ], - "asctime": "2020-01-29 07:23:18,049", - "created": 1580278998.049035, + "asctime": "2020-12-21 22:33:00,257", + "created": 1608586380.257632, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -982,39 +1042,39 @@ "lineno": 26, "message": "Expectation (Return value of authentification): result = False ()", "module": "test", - "msecs": 49.035072326660156, + "msecs": 257.6320171356201, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 10941.436052322388, - "thread": 140487175731008, + "relativeCreated": 10951.37095451355, + "thread": 140534768363328, "threadName": "MainThread" } ], - "msecs": 49.19099807739258, + "msecs": 257.720947265625, "msg": "Return value of authentification is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 10941.59197807312, - "thread": 140487175731008, + "relativeCreated": 10951.459884643555, + "thread": 140534768363328, "threadName": "MainThread", - "time_consumption": 0.00015592575073242188 + "time_consumption": 8.893013000488281e-05 } ], - "thread": 140487175731008, + "thread": 140534768363328, "threadName": "MainThread", - "time_consumption": 0.0019440650939941406, - "time_finished": "2020-01-29 07:23:18,049", - "time_start": "2020-01-29 07:23:18,047" + "time_consumption": 0.0011508464813232422, + "time_finished": "2020-12-21 22:33:00,257", + "time_start": "2020-12-21 22:33:00,256" }, "socket_protocol.pure_json_protocol: Authentification required, but not processed/ correctly processed.": { "args": null, - "asctime": "2020-01-29 07:23:16,632", - "created": 1580278996.632857, + "asctime": "2020-12-21 22:32:58,845", + "created": 1608586378.845987, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -1025,18 +1085,18 @@ "message": "socket_protocol.pure_json_protocol: Authentification required, but not processed/ correctly processed.", "module": "__init__", "moduleLogger": [], - "msecs": 632.857084274292, + "msecs": 845.98708152771, "msg": "socket_protocol.pure_json_protocol: Authentification required, but not processed/ correctly processed.", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 9525.25806427002, + "relativeCreated": 9539.72601890564, "testcaseLogger": [ { "args": [], - "asctime": "2020-01-29 07:23:17,839", - "created": 1580278997.839158, + "asctime": "2020-12-21 22:33:00,052", + "created": 1608586380.052388, "exc_info": null, "exc_text": null, "filename": "test_handling_errors.py", @@ -1051,125 +1111,125 @@ "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:16,633", - "created": 1580278996.633199, + "asctime": "2020-12-21 22:32:58,846", + "created": 1608586378.846379, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 295, + "lineno": 313, "message": "SJP: Cleaning up receive-buffer", "module": "__init__", - "msecs": 633.1989765167236, + "msecs": 846.3790416717529, "msg": "%s Cleaning up receive-buffer", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 9525.599956512451, - "thread": 140487175731008, + "relativeCreated": 9540.117979049683, + "thread": 140534768363328, "threadName": "MainThread" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:16,633", - "created": 1580278996.633592, + "asctime": "2020-12-21 22:32:58,846", + "created": 1608586378.846818, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 199, + "lineno": 217, "message": "SJP: Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "module": "__init__", - "msecs": 633.591890335083, + "msecs": 846.8179702758789, "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 9525.99287033081, - "thread": 140487175731008, + "relativeCreated": 9540.556907653809, + "thread": 140534768363328, "threadName": "MainThread" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:16,633", - "created": 1580278996.633792, + "asctime": "2020-12-21 22:32:58,847", + "created": 1608586378.847055, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 295, + "lineno": 313, "message": "SJP: Cleaning up receive-buffer", "module": "__init__", - "msecs": 633.7919235229492, + "msecs": 847.0549583435059, "msg": "%s Cleaning up receive-buffer", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 9526.192903518677, - "thread": 140487175731008, + "relativeCreated": 9540.793895721436, + "thread": 140534768363328, "threadName": "MainThread" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:16,634", - "created": 1580278996.634112, + "asctime": "2020-12-21 22:32:58,847", + "created": 1608586378.847385, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 199, + "lineno": 217, "message": "SJP: Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "module": "__init__", - "msecs": 634.1118812561035, + "msecs": 847.3849296569824, "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 9526.512861251831, - "thread": 140487175731008, + "relativeCreated": 9541.123867034912, + "thread": 140534768363328, "threadName": "MainThread" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:16,634", - "created": 1580278996.634338, + "asctime": "2020-12-21 22:32:58,847", + "created": 1608586378.847645, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "authentificate", "levelname": "INFO", "levelno": 20, - "lineno": 378, + "lineno": 396, "message": "SJP: Requesting seed for authentification", "module": "__init__", - "msecs": 634.3379020690918, + "msecs": 847.6450443267822, "msg": "%s Requesting seed for authentification", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 9526.73888206482, - "thread": 140487175731008, + "relativeCreated": 9541.383981704712, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -1180,31 +1240,31 @@ 0, "None" ], - "asctime": "2020-01-29 07:23:16,634", - "created": 1580278996.634512, + "asctime": "2020-12-21 22:32:58,847", + "created": 1608586378.847841, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 334, + "lineno": 352, "message": "SJP: TX -> status: 0, service_id: 1, data_id: 0, data: \"None\"", "module": "__init__", - "msecs": 634.5119476318359, + "msecs": 847.8410243988037, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 9526.912927627563, - "thread": 140487175731008, + "relativeCreated": 9541.579961776733, + "thread": 140534768363328, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-01-29 07:23:16,634", - "created": 1580278996.63494, + "asctime": "2020-12-21 22:32:58,848", + "created": 1608586378.848333, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -1214,20 +1274,20 @@ "lineno": 55, "message": "Send data: (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 2c 2d 2e 5d", "module": "test_helpers", - "msecs": 634.9399089813232, + "msecs": 848.3328819274902, "msg": "Send data: (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 2c 2d 2e 5d", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 9527.34088897705, - "thread": 140487175731008, + "relativeCreated": 9542.07181930542, + "thread": 140534768363328, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-01-29 07:23:16,785", - "created": 1580278996.785891, + "asctime": "2020-12-21 22:32:58,999", + "created": 1608586378.999472, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -1237,14 +1297,14 @@ "lineno": 66, "message": "Receive data (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 2c 2d 2e 5d", "module": "test_helpers", - "msecs": 785.891056060791, + "msecs": 999.47190284729, "msg": "Receive data (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 2c 2d 2e 5d", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 9678.292036056519, - "thread": 140487038072576, + "relativeCreated": 9693.21084022522, + "thread": 140534738941696, "threadName": "Thread-26" }, { @@ -1255,25 +1315,25 @@ "0", "None" ], - "asctime": "2020-01-29 07:23:16,786", - "created": 1580278996.786259, + "asctime": "2020-12-21 22:32:58,999", + "created": 1608586378.999952, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 247, + "lineno": 265, "message": "SJP: RX <- status: 0, service_id: 1, data_id: 0, data: \"None\"", "module": "__init__", - "msecs": 786.2589359283447, + "msecs": 999.9520778656006, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 9678.659915924072, - "thread": 140487038072576, + "relativeCreated": 9693.69101524353, + "thread": 140534738941696, "threadName": "Thread-26" }, { @@ -1281,50 +1341,50 @@ "SJP:", "__authentificate_create_seed__" ], - "asctime": "2020-01-29 07:23:16,786", - "created": 1580278996.78649, + "asctime": "2020-12-21 22:32:59,000", + "created": 1608586379.000199, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 264, + "lineno": 282, "message": "SJP: Executing callback __authentificate_create_seed__ to process received data", "module": "__init__", - "msecs": 786.4899635314941, + "msecs": 0.1990795135498047, "msg": "%s Executing callback %s to process received data", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 9678.890943527222, - "thread": 140487038072576, + "relativeCreated": 9693.93801689148, + "thread": 140534738941696, "threadName": "Thread-26" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:16,786", - "created": 1580278996.786653, + "asctime": "2020-12-21 22:32:59,000", + "created": 1608586379.000376, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentificate_create_seed__", "levelname": "INFO", "levelno": 20, - "lineno": 404, + "lineno": 422, "message": "SJP: Got seed request, sending seed for authentification", "module": "__init__", - "msecs": 786.6530418395996, + "msecs": 0.37598609924316406, "msg": "%s Got seed request, sending seed for authentification", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 9679.054021835327, - "thread": 140487038072576, + "relativeCreated": 9694.114923477173, + "thread": 140534738941696, "threadName": "Thread-26" }, { @@ -1333,33 +1393,33 @@ 0, 2, 0, - "'da7700cc13defc6cb1edbf070d870e33e6c7de100ed3b618ea764b9f8f1b7ef2'" + "'0e07fcd8b40cf2c9341c9192b86f6d6f8b014a35fe6a99028dd5014d42f60a36'" ], - "asctime": "2020-01-29 07:23:16,786", - "created": 1580278996.786881, + "asctime": "2020-12-21 22:32:59,000", + "created": 1608586379.000627, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 334, - "message": "SJP: TX -> status: 0, service_id: 2, data_id: 0, data: \"'da7700cc13defc6cb1edbf070d870e33e6c7de100ed3b618ea764b9f8f1b7ef2'\"", + "lineno": 352, + "message": "SJP: TX -> status: 0, service_id: 2, data_id: 0, data: \"'0e07fcd8b40cf2c9341c9192b86f6d6f8b014a35fe6a99028dd5014d42f60a36'\"", "module": "__init__", - "msecs": 786.8809700012207, + "msecs": 0.6270408630371094, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 9679.281949996948, - "thread": 140487038072576, + "relativeCreated": 9694.365978240967, + "thread": 140534738941696, "threadName": "Thread-26" }, { "args": [], - "asctime": "2020-01-29 07:23:16,787", - "created": 1580278996.787465, + "asctime": "2020-12-21 22:32:59,001", + "created": 1608586379.001278, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -1367,22 +1427,22 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 55, - "message": "Send data: (124): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 32 2c 20 22 64 61 74 61 22 3a 20 22 64 61 37 37 30 30 63 63 31 33 64 65 66 63 36 63 62 31 65 64 62 66 30 37 30 64 38 37 30 65 33 33 65 36 63 37 64 65 31 30 30 65 64 33 62 36 31 38 65 61 37 36 34 62 39 66 38 66 31 62 37 65 66 32 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 16 95 fe 2e", + "message": "Send data: (124): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 32 2c 20 22 64 61 74 61 22 3a 20 22 30 65 30 37 66 63 64 38 62 34 30 63 66 32 63 39 33 34 31 63 39 31 39 32 62 38 36 66 36 64 36 66 38 62 30 31 34 61 33 35 66 65 36 61 39 39 30 32 38 64 64 35 30 31 34 64 34 32 66 36 30 61 33 36 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 0c 1e 5c ae", "module": "test_helpers", - "msecs": 787.4650955200195, - "msg": "Send data: (124): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 32 2c 20 22 64 61 74 61 22 3a 20 22 64 61 37 37 30 30 63 63 31 33 64 65 66 63 36 63 62 31 65 64 62 66 30 37 30 64 38 37 30 65 33 33 65 36 63 37 64 65 31 30 30 65 64 33 62 36 31 38 65 61 37 36 34 62 39 66 38 66 31 62 37 65 66 32 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 16 95 fe 2e", + "msecs": 1.277923583984375, + "msg": "Send data: (124): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 32 2c 20 22 64 61 74 61 22 3a 20 22 30 65 30 37 66 63 64 38 62 34 30 63 66 32 63 39 33 34 31 63 39 31 39 32 62 38 36 66 36 64 36 66 38 62 30 31 34 61 33 35 66 65 36 61 39 39 30 32 38 64 64 35 30 31 34 64 34 32 66 36 30 61 33 36 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 0c 1e 5c ae", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 9679.866075515747, - "thread": 140487038072576, + "relativeCreated": 9695.016860961914, + "thread": 140534738941696, "threadName": "Thread-26" }, { "args": [], - "asctime": "2020-01-29 07:23:16,938", - "created": 1580278996.938699, + "asctime": "2020-12-21 22:32:59,152", + "created": 1608586379.152882, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -1390,16 +1450,16 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 66, - "message": "Receive data (124): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 32 2c 20 22 64 61 74 61 22 3a 20 22 64 61 37 37 30 30 63 63 31 33 64 65 66 63 36 63 62 31 65 64 62 66 30 37 30 64 38 37 30 65 33 33 65 36 63 37 64 65 31 30 30 65 64 33 62 36 31 38 65 61 37 36 34 62 39 66 38 66 31 62 37 65 66 32 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 16 95 fe 2e", + "message": "Receive data (124): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 32 2c 20 22 64 61 74 61 22 3a 20 22 30 65 30 37 66 63 64 38 62 34 30 63 66 32 63 39 33 34 31 63 39 31 39 32 62 38 36 66 36 64 36 66 38 62 30 31 34 61 33 35 66 65 36 61 39 39 30 32 38 64 64 35 30 31 34 64 34 32 66 36 30 61 33 36 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 0c 1e 5c ae", "module": "test_helpers", - "msecs": 938.6990070343018, - "msg": "Receive data (124): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 32 2c 20 22 64 61 74 61 22 3a 20 22 64 61 37 37 30 30 63 63 31 33 64 65 66 63 36 63 62 31 65 64 62 66 30 37 30 64 38 37 30 65 33 33 65 36 63 37 64 65 31 30 30 65 64 33 62 36 31 38 65 61 37 36 34 62 39 66 38 66 31 62 37 65 66 32 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 16 95 fe 2e", + "msecs": 152.88209915161133, + "msg": "Receive data (124): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 32 2c 20 22 64 61 74 61 22 3a 20 22 30 65 30 37 66 63 64 38 62 34 30 63 66 32 63 39 33 34 31 63 39 31 39 32 62 38 36 66 36 64 36 66 38 62 30 31 34 61 33 35 66 65 36 61 39 39 30 32 38 64 64 35 30 31 34 64 34 32 66 36 30 61 33 36 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 0c 1e 5c ae", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 9831.09998703003, - "thread": 140487116760832, + "relativeCreated": 9846.621036529541, + "thread": 140534747334400, "threadName": "Thread-27" }, { @@ -1408,27 +1468,27 @@ "0", "2", "0", - "u'da7700cc13defc6cb1edbf070d870e33e6c7de100ed3b618ea764b9f8f1b7ef2'" + "u'0e07fcd8b40cf2c9341c9192b86f6d6f8b014a35fe6a99028dd5014d42f60a36'" ], - "asctime": "2020-01-29 07:23:16,939", - "created": 1580278996.939065, + "asctime": "2020-12-21 22:32:59,153", + "created": 1608586379.153361, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 247, - "message": "SJP: RX <- status: 0, service_id: 2, data_id: 0, data: \"u'da7700cc13defc6cb1edbf070d870e33e6c7de100ed3b618ea764b9f8f1b7ef2'\"", + "lineno": 265, + "message": "SJP: RX <- status: 0, service_id: 2, data_id: 0, data: \"u'0e07fcd8b40cf2c9341c9192b86f6d6f8b014a35fe6a99028dd5014d42f60a36'\"", "module": "__init__", - "msecs": 939.0649795532227, + "msecs": 153.36108207702637, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 9831.46595954895, - "thread": 140487116760832, + "relativeCreated": 9847.100019454956, + "thread": 140534747334400, "threadName": "Thread-27" }, { @@ -1436,50 +1496,50 @@ "SJP:", "__authentificate_create_key__" ], - "asctime": "2020-01-29 07:23:16,939", - "created": 1580278996.939291, + "asctime": "2020-12-21 22:32:59,153", + "created": 1608586379.153632, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 264, + "lineno": 282, "message": "SJP: Executing callback __authentificate_create_key__ to process received data", "module": "__init__", - "msecs": 939.2910003662109, + "msecs": 153.63192558288574, "msg": "%s Executing callback %s to process received data", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 9831.691980361938, - "thread": 140487116760832, + "relativeCreated": 9847.370862960815, + "thread": 140534747334400, "threadName": "Thread-27" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:16,939", - "created": 1580278996.939453, + "asctime": "2020-12-21 22:32:59,153", + "created": 1608586379.153805, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentificate_create_key__", "levelname": "INFO", "levelno": 20, - "lineno": 413, + "lineno": 431, "message": "SJP: Got seed, sending key for authentification", "module": "__init__", - "msecs": 939.4528865814209, + "msecs": 153.80501747131348, "msg": "%s Got seed, sending key for authentification", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 9831.853866577148, - "thread": 140487116760832, + "relativeCreated": 9847.543954849243, + "thread": 140534747334400, "threadName": "Thread-27" }, { @@ -1488,33 +1548,33 @@ 0, 3, 0, - "'d5d1672dedcccda1026a7f34ab5ae8bec00e68f8583e8dc6bc77a60363fff0c37589e1b6127c7a52e47fa8c5c0e34041848ce4950a744ce91f6b3a508ffd1c8e'" + "'8d64836851399cace34c5a414cc6ff2ae92e9dc5bc0f1763e95cf5ace45abc023e0a004554e03650be3cfe815f4d4859eeac3d3ae77149a730dff8dc21fa5b8e'" ], - "asctime": "2020-01-29 07:23:16,939", - "created": 1580278996.939703, + "asctime": "2020-12-21 22:32:59,154", + "created": 1608586379.154075, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 334, - "message": "SJP: TX -> status: 0, service_id: 3, data_id: 0, data: \"'d5d1672dedcccda1026a7f34ab5ae8bec00e68f8583e8dc6bc77a60363fff0c37589e1b6127c7a52e47fa8c5c0e34041848ce4950a744ce91f6b3a508ffd1c8e'\"", + "lineno": 352, + "message": "SJP: TX -> status: 0, service_id: 3, data_id: 0, data: \"'8d64836851399cace34c5a414cc6ff2ae92e9dc5bc0f1763e95cf5ace45abc023e0a004554e03650be3cfe815f4d4859eeac3d3ae77149a730dff8dc21fa5b8e'\"", "module": "__init__", - "msecs": 939.7029876708984, + "msecs": 154.07490730285645, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 9832.103967666626, - "thread": 140487116760832, + "relativeCreated": 9847.813844680786, + "thread": 140534747334400, "threadName": "Thread-27" }, { "args": [], - "asctime": "2020-01-29 07:23:16,940", - "created": 1580278996.940488, + "asctime": "2020-12-21 22:32:59,154", + "created": 1608586379.154878, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -1522,22 +1582,22 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 55, - "message": "Send data: (188): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 33 2c 20 22 64 61 74 61 22 3a 20 22 64 35 64 31 36 37 32 64 65 64 63 63 63 64 61 31 30 32 36 61 37 66 33 34 61 62 35 61 65 38 62 65 63 30 30 65 36 38 66 38 35 38 33 65 38 64 63 36 62 63 37 37 61 36 30 33 36 33 66 66 66 30 63 33 37 35 38 39 65 31 62 36 31 32 37 63 37 61 35 32 65 34 37 66 61 38 63 35 63 30 65 33 34 30 34 31 38 34 38 63 65 34 39 35 30 61 37 34 34 63 65 39 31 66 36 62 33 61 35 30 38 66 66 64 31 63 38 65 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 39 b3 59 ab", + "message": "Send data: (188): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 33 2c 20 22 64 61 74 61 22 3a 20 22 38 64 36 34 38 33 36 38 35 31 33 39 39 63 61 63 65 33 34 63 35 61 34 31 34 63 63 36 66 66 32 61 65 39 32 65 39 64 63 35 62 63 30 66 31 37 36 33 65 39 35 63 66 35 61 63 65 34 35 61 62 63 30 32 33 65 30 61 30 30 34 35 35 34 65 30 33 36 35 30 62 65 33 63 66 65 38 31 35 66 34 64 34 38 35 39 65 65 61 63 33 64 33 61 65 37 37 31 34 39 61 37 33 30 64 66 66 38 64 63 32 31 66 61 35 62 38 65 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 66 cf 82 1c", "module": "test_helpers", - "msecs": 940.4881000518799, - "msg": "Send data: (188): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 33 2c 20 22 64 61 74 61 22 3a 20 22 64 35 64 31 36 37 32 64 65 64 63 63 63 64 61 31 30 32 36 61 37 66 33 34 61 62 35 61 65 38 62 65 63 30 30 65 36 38 66 38 35 38 33 65 38 64 63 36 62 63 37 37 61 36 30 33 36 33 66 66 66 30 63 33 37 35 38 39 65 31 62 36 31 32 37 63 37 61 35 32 65 34 37 66 61 38 63 35 63 30 65 33 34 30 34 31 38 34 38 63 65 34 39 35 30 61 37 34 34 63 65 39 31 66 36 62 33 61 35 30 38 66 66 64 31 63 38 65 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 39 b3 59 ab", + "msecs": 154.8779010772705, + "msg": "Send data: (188): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 33 2c 20 22 64 61 74 61 22 3a 20 22 38 64 36 34 38 33 36 38 35 31 33 39 39 63 61 63 65 33 34 63 35 61 34 31 34 63 63 36 66 66 32 61 65 39 32 65 39 64 63 35 62 63 30 66 31 37 36 33 65 39 35 63 66 35 61 63 65 34 35 61 62 63 30 32 33 65 30 61 30 30 34 35 35 34 65 30 33 36 35 30 62 65 33 63 66 65 38 31 35 66 34 64 34 38 35 39 65 65 61 63 33 64 33 61 65 37 37 31 34 39 61 37 33 30 64 66 66 38 64 63 32 31 66 61 35 62 38 65 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 66 cf 82 1c", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 9832.889080047607, - "thread": 140487116760832, + "relativeCreated": 9848.6168384552, + "thread": 140534747334400, "threadName": "Thread-27" }, { "args": [], - "asctime": "2020-01-29 07:23:17,091", - "created": 1580278997.091828, + "asctime": "2020-12-21 22:32:59,306", + "created": 1608586379.306386, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -1545,16 +1605,16 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 66, - "message": "Receive data (188): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 33 2c 20 22 64 61 74 61 22 3a 20 22 64 35 64 31 36 37 32 64 65 64 63 63 63 64 61 31 30 32 36 61 37 66 33 34 61 62 35 61 65 38 62 65 63 30 30 65 36 38 66 38 35 38 33 65 38 64 63 36 62 63 37 37 61 36 30 33 36 33 66 66 66 30 63 33 37 35 38 39 65 31 62 36 31 32 37 63 37 61 35 32 65 34 37 66 61 38 63 35 63 30 65 33 34 30 34 31 38 34 38 63 65 34 39 35 30 61 37 34 34 63 65 39 31 66 36 62 33 61 35 30 38 66 66 64 31 63 38 65 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 39 b3 59 ab", + "message": "Receive data (188): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 33 2c 20 22 64 61 74 61 22 3a 20 22 38 64 36 34 38 33 36 38 35 31 33 39 39 63 61 63 65 33 34 63 35 61 34 31 34 63 63 36 66 66 32 61 65 39 32 65 39 64 63 35 62 63 30 66 31 37 36 33 65 39 35 63 66 35 61 63 65 34 35 61 62 63 30 32 33 65 30 61 30 30 34 35 35 34 65 30 33 36 35 30 62 65 33 63 66 65 38 31 35 66 34 64 34 38 35 39 65 65 61 63 33 64 33 61 65 37 37 31 34 39 61 37 33 30 64 66 66 38 64 63 32 31 66 61 35 62 38 65 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 66 cf 82 1c", "module": "test_helpers", - "msecs": 91.8281078338623, - "msg": "Receive data (188): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 33 2c 20 22 64 61 74 61 22 3a 20 22 64 35 64 31 36 37 32 64 65 64 63 63 63 64 61 31 30 32 36 61 37 66 33 34 61 62 35 61 65 38 62 65 63 30 30 65 36 38 66 38 35 38 33 65 38 64 63 36 62 63 37 37 61 36 30 33 36 33 66 66 66 30 63 33 37 35 38 39 65 31 62 36 31 32 37 63 37 61 35 32 65 34 37 66 61 38 63 35 63 30 65 33 34 30 34 31 38 34 38 63 65 34 39 35 30 61 37 34 34 63 65 39 31 66 36 62 33 61 35 30 38 66 66 64 31 63 38 65 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 39 b3 59 ab", + "msecs": 306.38599395751953, + "msg": "Receive data (188): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 33 2c 20 22 64 61 74 61 22 3a 20 22 38 64 36 34 38 33 36 38 35 31 33 39 39 63 61 63 65 33 34 63 35 61 34 31 34 63 63 36 66 66 32 61 65 39 32 65 39 64 63 35 62 63 30 66 31 37 36 33 65 39 35 63 66 35 61 63 65 34 35 61 62 63 30 32 33 65 30 61 30 30 34 35 35 34 65 30 33 36 35 30 62 65 33 63 66 65 38 31 35 66 34 64 34 38 35 39 65 65 61 63 33 64 33 61 65 37 37 31 34 39 61 37 33 30 64 66 66 38 64 63 32 31 66 61 35 62 38 65 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 66 cf 82 1c", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 9984.22908782959, - "thread": 140487038072576, + "relativeCreated": 10000.12493133545, + "thread": 140534738941696, "threadName": "Thread-28" }, { @@ -1563,27 +1623,27 @@ "0", "3", "0", - "u'd5d1672dedcccda1026a7f34ab5ae8bec00e68f8583e8dc6bc77a60363fff0c37589e1b6127c7a52e47fa8c5c0e34041848ce4950a744ce91f6b3a508ffd1c8e'" + "u'8d64836851399cace34c5a414cc6ff2ae92e9dc5bc0f1763e95cf5ace45abc023e0a004554e03650be3cfe815f4d4859eeac3d3ae77149a730dff8dc21fa5b8e'" ], - "asctime": "2020-01-29 07:23:17,092", - "created": 1580278997.092248, + "asctime": "2020-12-21 22:32:59,306", + "created": 1608586379.306862, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 247, - "message": "SJP: RX <- status: 0, service_id: 3, data_id: 0, data: \"u'd5d1672dedcccda1026a7f34ab5ae8bec00e68f8583e8dc6bc77a60363fff0c37589e1b6127c7a52e47fa8c5c0e34041848ce4950a744ce91f6b3a508ffd1c8e'\"", + "lineno": 265, + "message": "SJP: RX <- status: 0, service_id: 3, data_id: 0, data: \"u'8d64836851399cace34c5a414cc6ff2ae92e9dc5bc0f1763e95cf5ace45abc023e0a004554e03650be3cfe815f4d4859eeac3d3ae77149a730dff8dc21fa5b8e'\"", "module": "__init__", - "msecs": 92.24796295166016, + "msecs": 306.86211585998535, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 9984.648942947388, - "thread": 140487038072576, + "relativeCreated": 10000.601053237915, + "thread": 140534738941696, "threadName": "Thread-28" }, { @@ -1591,50 +1651,50 @@ "SJP:", "__authentificate_check_key__" ], - "asctime": "2020-01-29 07:23:17,092", - "created": 1580278997.092477, + "asctime": "2020-12-21 22:32:59,307", + "created": 1608586379.307104, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 264, + "lineno": 282, "message": "SJP: Executing callback __authentificate_check_key__ to process received data", "module": "__init__", - "msecs": 92.47708320617676, + "msecs": 307.10411071777344, "msg": "%s Executing callback %s to process received data", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 9984.878063201904, - "thread": 140487038072576, + "relativeCreated": 10000.843048095703, + "thread": 140534738941696, "threadName": "Thread-28" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:17,092", - "created": 1580278997.092689, + "asctime": "2020-12-21 22:32:59,307", + "created": 1608586379.307331, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentificate_check_key__", "levelname": "INFO", "levelno": 20, - "lineno": 427, + "lineno": 445, "message": "SJP: Got incorrect key, sending negative authentification feedback", "module": "__init__", - "msecs": 92.68903732299805, + "msecs": 307.3310852050781, "msg": "%s Got incorrect key, sending negative authentification feedback", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 9985.090017318726, - "thread": 140487038072576, + "relativeCreated": 10001.070022583008, + "thread": 140534738941696, "threadName": "Thread-28" }, { @@ -1645,31 +1705,31 @@ 0, "False" ], - "asctime": "2020-01-29 07:23:17,092", - "created": 1580278997.092904, + "asctime": "2020-12-21 22:32:59,307", + "created": 1608586379.307561, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 334, + "lineno": 352, "message": "SJP: TX -> status: 0, service_id: 4, data_id: 0, data: \"False\"", "module": "__init__", - "msecs": 92.90409088134766, + "msecs": 307.56092071533203, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 9985.305070877075, - "thread": 140487038072576, + "relativeCreated": 10001.299858093262, + "thread": 140534738941696, "threadName": "Thread-28" }, { "args": [], - "asctime": "2020-01-29 07:23:17,093", - "created": 1580278997.093362, + "asctime": "2020-12-21 22:32:59,308", + "created": 1608586379.308051, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -1679,20 +1739,20 @@ "lineno": 55, "message": "Send data: (63): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 34 2c 20 22 64 61 74 61 22 3a 20 66 61 6c 73 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 8d 2b 5d a9", "module": "test_helpers", - "msecs": 93.36209297180176, + "msecs": 308.05110931396484, "msg": "Send data: (63): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 34 2c 20 22 64 61 74 61 22 3a 20 66 61 6c 73 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 8d 2b 5d a9", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 9985.76307296753, - "thread": 140487038072576, + "relativeCreated": 10001.790046691895, + "thread": 140534738941696, "threadName": "Thread-28" }, { "args": [], - "asctime": "2020-01-29 07:23:17,244", - "created": 1580278997.244511, + "asctime": "2020-12-21 22:32:59,458", + "created": 1608586379.458941, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -1702,14 +1762,14 @@ "lineno": 66, "message": "Receive data (63): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 34 2c 20 22 64 61 74 61 22 3a 20 66 61 6c 73 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 8d 2b 5d a9", "module": "test_helpers", - "msecs": 244.51088905334473, + "msecs": 458.9409828186035, "msg": "Receive data (63): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 34 2c 20 22 64 61 74 61 22 3a 20 66 61 6c 73 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 8d 2b 5d a9", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 10136.911869049072, - "thread": 140487116760832, + "relativeCreated": 10152.679920196533, + "thread": 140534747334400, "threadName": "Thread-29" }, { @@ -1720,25 +1780,25 @@ "0", "False" ], - "asctime": "2020-01-29 07:23:17,244", - "created": 1580278997.244918, + "asctime": "2020-12-21 22:32:59,459", + "created": 1608586379.459161, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 247, + "lineno": 265, "message": "SJP: RX <- status: 0, service_id: 4, data_id: 0, data: \"False\"", "module": "__init__", - "msecs": 244.9181079864502, + "msecs": 459.16104316711426, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 10137.319087982178, - "thread": 140487116760832, + "relativeCreated": 10152.899980545044, + "thread": 140534747334400, "threadName": "Thread-29" }, { @@ -1746,50 +1806,50 @@ "SJP:", "__authentificate_process_feedback__" ], - "asctime": "2020-01-29 07:23:17,245", - "created": 1580278997.245194, + "asctime": "2020-12-21 22:32:59,459", + "created": 1608586379.459272, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 281, + "lineno": 299, "message": "SJP: Executing callback __authentificate_process_feedback__ to process received data", "module": "__init__", - "msecs": 245.1939582824707, + "msecs": 459.2719078063965, "msg": "%s Executing callback %s to process received data", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 10137.594938278198, - "thread": 140487116760832, + "relativeCreated": 10153.010845184326, + "thread": 140534747334400, "threadName": "Thread-29" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:17,245", - "created": 1580278997.245405, + "asctime": "2020-12-21 22:32:59,459", + "created": 1608586379.459355, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentificate_process_feedback__", "levelname": "WARNING", "levelno": 30, - "lineno": 437, + "lineno": 455, "message": "SJP: Got negative authentification feedback", "module": "__init__", - "msecs": 245.4049587249756, + "msecs": 459.35511589050293, "msg": "%s Got negative authentification feedback", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 10137.805938720703, - "thread": 140487116760832, + "relativeCreated": 10153.094053268433, + "thread": 140534747334400, "threadName": "Thread-29" }, { @@ -1800,31 +1860,31 @@ 45054, "{u'test': u'test'}" ], - "asctime": "2020-01-29 07:23:17,336", - "created": 1580278997.336876, + "asctime": "2020-12-21 22:32:59,550", + "created": 1608586379.550235, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 334, + "lineno": 352, "message": "SJP: TX -> status: 0, service_id: 10, data_id: 45054, data: \"{u'test': u'test'}\"", "module": "__init__", - "msecs": 336.87591552734375, + "msecs": 550.2350330352783, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 10229.276895523071, - "thread": 140487175731008, + "relativeCreated": 10243.973970413208, + "thread": 140534768363328, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-01-29 07:23:17,337", - "created": 1580278997.337216, + "asctime": "2020-12-21 22:32:59,550", + "created": 1608586379.550509, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -1834,20 +1894,20 @@ "lineno": 55, "message": "Send data: (79): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 7d 63 ee c4 24", "module": "test_helpers", - "msecs": 337.2159004211426, + "msecs": 550.508975982666, "msg": "Send data: (79): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 7d 63 ee c4 24", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 10229.61688041687, - "thread": 140487175731008, + "relativeCreated": 10244.247913360596, + "thread": 140534768363328, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-01-29 07:23:17,488", - "created": 1580278997.48812, + "asctime": "2020-12-21 22:32:59,701", + "created": 1608586379.701693, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -1857,14 +1917,14 @@ "lineno": 66, "message": "Receive data (79): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 7d 63 ee c4 24", "module": "test_helpers", - "msecs": 488.12007904052734, + "msecs": 701.693058013916, "msg": "Receive data (79): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 7d 63 ee c4 24", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 10380.521059036255, - "thread": 140487116760832, + "relativeCreated": 10395.431995391846, + "thread": 140534747334400, "threadName": "Thread-30" }, { @@ -1875,25 +1935,25 @@ "45054", "{u'test': u'test'}" ], - "asctime": "2020-01-29 07:23:17,488", - "created": 1580278997.488537, + "asctime": "2020-12-21 22:32:59,702", + "created": 1608586379.702219, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 247, + "lineno": 265, "message": "SJP: RX <- status: 0, service_id: 10, data_id: 45054, data: \"{u'test': u'test'}\"", "module": "__init__", - "msecs": 488.537073135376, + "msecs": 702.2190093994141, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 10380.938053131104, - "thread": 140487116760832, + "relativeCreated": 10395.957946777344, + "thread": 140534747334400, "threadName": "Thread-30" }, { @@ -1901,25 +1961,25 @@ "SJP:", "Unknown Client" ], - "asctime": "2020-01-29 07:23:17,488", - "created": 1580278997.488754, + "asctime": "2020-12-21 22:32:59,702", + "created": 1608586379.702649, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "WARNING", "levelno": 30, - "lineno": 257, + "lineno": 275, "message": "SJP: Received message needs authentification: Unknown Client. Sending negative response.", "module": "__init__", - "msecs": 488.7540340423584, + "msecs": 702.6491165161133, "msg": "%s Received message needs authentification: %s. Sending negative response.", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 10381.155014038086, - "thread": 140487116760832, + "relativeCreated": 10396.388053894043, + "thread": 140534747334400, "threadName": "Thread-30" }, { @@ -1930,31 +1990,31 @@ 45054, "None" ], - "asctime": "2020-01-29 07:23:17,488", - "created": 1580278997.488921, + "asctime": "2020-12-21 22:32:59,702", + "created": 1608586379.702851, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 334, + "lineno": 352, "message": "SJP: TX -> status: 2, service_id: 11, data_id: 45054, data: \"None\"", "module": "__init__", - "msecs": 488.9209270477295, + "msecs": 702.8510570526123, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 10381.321907043457, - "thread": 140487116760832, + "relativeCreated": 10396.589994430542, + "thread": 140534747334400, "threadName": "Thread-30" }, { "args": [], - "asctime": "2020-01-29 07:23:17,489", - "created": 1580278997.489395, + "asctime": "2020-12-21 22:32:59,703", + "created": 1608586379.703333, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -1964,20 +2024,20 @@ "lineno": 55, "message": "Send data: (67): 7b 22 73 74 61 74 75 73 22 3a 20 32 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 7d 0b 25 14 73", "module": "test_helpers", - "msecs": 489.3949031829834, + "msecs": 703.3329010009766, "msg": "Send data: (67): 7b 22 73 74 61 74 75 73 22 3a 20 32 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 7d 0b 25 14 73", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 10381.795883178711, - "thread": 140487116760832, + "relativeCreated": 10397.071838378906, + "thread": 140534747334400, "threadName": "Thread-30" }, { "args": [], - "asctime": "2020-01-29 07:23:17,640", - "created": 1580278997.640548, + "asctime": "2020-12-21 22:32:59,854", + "created": 1608586379.854762, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -1987,14 +2047,14 @@ "lineno": 66, "message": "Receive data (67): 7b 22 73 74 61 74 75 73 22 3a 20 32 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 7d 0b 25 14 73", "module": "test_helpers", - "msecs": 640.5479907989502, + "msecs": 854.762077331543, "msg": "Receive data (67): 7b 22 73 74 61 74 75 73 22 3a 20 32 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 7d 0b 25 14 73", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 10532.948970794678, - "thread": 140487038072576, + "relativeCreated": 10548.501014709473, + "thread": 140534738941696, "threadName": "Thread-31" }, { @@ -2005,25 +2065,25 @@ "45054", "None" ], - "asctime": "2020-01-29 07:23:17,640", - "created": 1580278997.640977, + "asctime": "2020-12-21 22:32:59,855", + "created": 1608586379.855211, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 247, + "lineno": 265, "message": "SJP: RX <- status: 2, service_id: 11, data_id: 45054, data: \"None\"", "module": "__init__", - "msecs": 640.9769058227539, + "msecs": 855.2110195159912, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 10533.377885818481, - "thread": 140487038072576, + "relativeCreated": 10548.94995689392, + "thread": 140534738941696, "threadName": "Thread-31" }, { @@ -2031,71 +2091,71 @@ "SJP:", "Authentification required" ], - "asctime": "2020-01-29 07:23:17,641", - "created": 1580278997.641284, + "asctime": "2020-12-21 22:32:59,855", + "created": 1608586379.855496, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "WARNING", "levelno": 30, - "lineno": 274, + "lineno": 292, "message": "SJP: Received message has a peculiar status: Authentification required", "module": "__init__", - "msecs": 641.2839889526367, + "msecs": 855.4959297180176, "msg": "%s Received message has a peculiar status: %s", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 10533.684968948364, - "thread": 140487038072576, + "relativeCreated": 10549.234867095947, + "thread": 140534738941696, "threadName": "Thread-31" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:17,641", - "created": 1580278997.641516, + "asctime": "2020-12-21 22:32:59,855", + "created": 1608586379.85571, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 292, + "lineno": 310, "message": "SJP: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 641.5159702301025, + "msecs": 855.7100296020508, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 10533.91695022583, - "thread": 140487038072576, + "relativeCreated": 10549.44896697998, + "thread": 140534738941696, "threadName": "Thread-31" } ], - "msecs": 839.1580581665039, + "msecs": 52.38795280456543, "msg": "Authentification with different secrets for request and response instance (pure_json_protocol).", "name": "__tLogger__", "pathname": "src/tests/test_handling_errors.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 10731.559038162231, - "thread": 140487175731008, + "relativeCreated": 10746.126890182495, + "thread": 140534768363328, "threadName": "MainThread", - "time_consumption": 0.19764208793640137 + "time_consumption": 0.19667792320251465 }, { "args": [ "False", "" ], - "asctime": "2020-01-29 07:23:17,840", - "created": 1580278997.840072, + "asctime": "2020-12-21 22:33:00,052", + "created": 1608586380.052771, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2112,8 +2172,8 @@ "False", "" ], - "asctime": "2020-01-29 07:23:17,839", - "created": 1580278997.8397, + "asctime": "2020-12-21 22:33:00,052", + "created": 1608586380.05262, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2123,14 +2183,14 @@ "lineno": 22, "message": "Result (Return value of authentification): False ()", "module": "test", - "msecs": 839.6999835968018, + "msecs": 52.61993408203125, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 10732.10096359253, - "thread": 140487175731008, + "relativeCreated": 10746.358871459961, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -2139,8 +2199,8 @@ "False", "" ], - "asctime": "2020-01-29 07:23:17,839", - "created": 1580278997.839897, + "asctime": "2020-12-21 22:33:00,052", + "created": 1608586380.05269, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2150,35 +2210,35 @@ "lineno": 26, "message": "Expectation (Return value of authentification): result = False ()", "module": "test", - "msecs": 839.8969173431396, + "msecs": 52.69002914428711, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 10732.297897338867, - "thread": 140487175731008, + "relativeCreated": 10746.428966522217, + "thread": 140534768363328, "threadName": "MainThread" } ], - "msecs": 840.0719165802002, + "msecs": 52.77109146118164, "msg": "Return value of authentification is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 10732.472896575928, - "thread": 140487175731008, + "relativeCreated": 10746.510028839111, + "thread": 140534768363328, "threadName": "MainThread", - "time_consumption": 0.00017499923706054688 + "time_consumption": 8.106231689453125e-05 }, { "args": [ "True", "" ], - "asctime": "2020-01-29 07:23:17,840", - "created": 1580278997.840663, + "asctime": "2020-12-21 22:33:00,052", + "created": 1608586380.052973, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2195,8 +2255,8 @@ "True", "" ], - "asctime": "2020-01-29 07:23:17,840", - "created": 1580278997.840337, + "asctime": "2020-12-21 22:33:00,052", + "created": 1608586380.052864, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2206,14 +2266,14 @@ "lineno": 22, "message": "Result (Return value of send method): True ()", "module": "test", - "msecs": 840.3370380401611, + "msecs": 52.86407470703125, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 10732.738018035889, - "thread": 140487175731008, + "relativeCreated": 10746.603012084961, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -2222,8 +2282,8 @@ "True", "" ], - "asctime": "2020-01-29 07:23:17,840", - "created": 1580278997.840497, + "asctime": "2020-12-21 22:33:00,052", + "created": 1608586380.05292, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2233,35 +2293,35 @@ "lineno": 26, "message": "Expectation (Return value of send method): result = True ()", "module": "test", - "msecs": 840.4970169067383, + "msecs": 52.92010307312012, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 10732.897996902466, - "thread": 140487175731008, + "relativeCreated": 10746.65904045105, + "thread": 140534768363328, "threadName": "MainThread" } ], - "msecs": 840.662956237793, + "msecs": 52.973031997680664, "msg": "Return value of send method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 10733.06393623352, - "thread": 140487175731008, + "relativeCreated": 10746.71196937561, + "thread": 140534768363328, "threadName": "MainThread", - "time_consumption": 0.0001659393310546875 + "time_consumption": 5.2928924560546875e-05 }, { "args": [ "2", "" ], - "asctime": "2020-01-29 07:23:17,841", - "created": 1580278997.841284, + "asctime": "2020-12-21 22:33:00,053", + "created": 1608586380.053168, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2278,8 +2338,8 @@ "2", "" ], - "asctime": "2020-01-29 07:23:17,840", - "created": 1580278997.840922, + "asctime": "2020-12-21 22:33:00,053", + "created": 1608586380.053061, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2289,14 +2349,14 @@ "lineno": 22, "message": "Result (Response Status (Authentification required) transfered via pure_json_protocol): 2 ()", "module": "test", - "msecs": 840.9221172332764, + "msecs": 53.06100845336914, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 10733.323097229004, - "thread": 140487175731008, + "relativeCreated": 10746.799945831299, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -2305,8 +2365,8 @@ "2", "" ], - "asctime": "2020-01-29 07:23:17,841", - "created": 1580278997.841085, + "asctime": "2020-12-21 22:33:00,053", + "created": 1608586380.053115, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2316,35 +2376,35 @@ "lineno": 26, "message": "Expectation (Response Status (Authentification required) transfered via pure_json_protocol): result = 2 ()", "module": "test", - "msecs": 841.0849571228027, + "msecs": 53.114891052246094, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 10733.48593711853, - "thread": 140487175731008, + "relativeCreated": 10746.853828430176, + "thread": 140534768363328, "threadName": "MainThread" } ], - "msecs": 841.2840366363525, + "msecs": 53.16805839538574, "msg": "Response Status (Authentification required) transfered via pure_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 10733.68501663208, - "thread": 140487175731008, + "relativeCreated": 10746.906995773315, + "thread": 140534768363328, "threadName": "MainThread", - "time_consumption": 0.0001990795135498047 + "time_consumption": 5.316734313964844e-05 }, { "args": [ "None", "" ], - "asctime": "2020-01-29 07:23:17,841", - "created": 1580278997.841885, + "asctime": "2020-12-21 22:33:00,053", + "created": 1608586380.053375, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2361,8 +2421,8 @@ "None", "" ], - "asctime": "2020-01-29 07:23:17,841", - "created": 1580278997.841556, + "asctime": "2020-12-21 22:33:00,053", + "created": 1608586380.053264, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2372,14 +2432,14 @@ "lineno": 22, "message": "Result (Response Data (no data) transfered via pure_json_protocol): None ()", "module": "test", - "msecs": 841.5560722351074, + "msecs": 53.26390266418457, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 10733.957052230835, - "thread": 140487175731008, + "relativeCreated": 10747.002840042114, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -2388,8 +2448,8 @@ "None", "" ], - "asctime": "2020-01-29 07:23:17,841", - "created": 1580278997.841721, + "asctime": "2020-12-21 22:33:00,053", + "created": 1608586380.053317, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2399,35 +2459,35 @@ "lineno": 26, "message": "Expectation (Response Data (no data) transfered via pure_json_protocol): result = None ()", "module": "test", - "msecs": 841.7210578918457, + "msecs": 53.31707000732422, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 10734.122037887573, - "thread": 140487175731008, + "relativeCreated": 10747.056007385254, + "thread": 140534768363328, "threadName": "MainThread" } ], - "msecs": 841.8850898742676, + "msecs": 53.3750057220459, "msg": "Response Data (no data) transfered via pure_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 10734.286069869995, - "thread": 140487175731008, + "relativeCreated": 10747.113943099976, + "thread": 140534768363328, "threadName": "MainThread", - "time_consumption": 0.000164031982421875 + "time_consumption": 5.793571472167969e-05 }, { "args": [ "None", "" ], - "asctime": "2020-01-29 07:23:17,943", - "created": 1580278997.943225, + "asctime": "2020-12-21 22:33:00,154", + "created": 1608586380.154158, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2445,25 +2505,25 @@ "11", "45054" ], - "asctime": "2020-01-29 07:23:17,942", - "created": 1580278997.942488, + "asctime": "2020-12-21 22:33:00,153", + "created": 1608586380.153691, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 309, + "lineno": 327, "message": "SJP: TIMEOUT (0.1s): Requested data (service_id: 11; data_id: 45054) not in buffer.", "module": "__init__", - "msecs": 942.4879550933838, + "msecs": 153.69105339050293, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 10834.888935089111, - "thread": 140487175731008, + "relativeCreated": 10847.429990768433, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -2472,8 +2532,8 @@ "None", "" ], - "asctime": "2020-01-29 07:23:17,942", - "created": 1580278997.942833, + "asctime": "2020-12-21 22:33:00,153", + "created": 1608586380.153923, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2483,14 +2543,14 @@ "lineno": 22, "message": "Result (Return Value (request instance) for pure_json_protocol.receive with data data_id 0xaffe): None ()", "module": "test", - "msecs": 942.8329467773438, + "msecs": 153.92303466796875, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 10835.233926773071, - "thread": 140487175731008, + "relativeCreated": 10847.661972045898, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -2499,8 +2559,8 @@ "None", "" ], - "asctime": "2020-01-29 07:23:17,943", - "created": 1580278997.943026, + "asctime": "2020-12-21 22:33:00,154", + "created": 1608586380.15405, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2510,35 +2570,35 @@ "lineno": 26, "message": "Expectation (Return Value (request instance) for pure_json_protocol.receive with data data_id 0xaffe): result = None ()", "module": "test", - "msecs": 943.026065826416, + "msecs": 154.05011177062988, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 10835.427045822144, - "thread": 140487175731008, + "relativeCreated": 10847.78904914856, + "thread": 140534768363328, "threadName": "MainThread" } ], - "msecs": 943.2249069213867, + "msecs": 154.1581153869629, "msg": "Return Value (request instance) for pure_json_protocol.receive with data data_id 0xaffe is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 10835.625886917114, - "thread": 140487175731008, + "relativeCreated": 10847.897052764893, + "thread": 140534768363328, "threadName": "MainThread", - "time_consumption": 0.00019884109497070312 + "time_consumption": 0.00010800361633300781 }, { "args": [ "None", "" ], - "asctime": "2020-01-29 07:23:18,044", - "created": 1580278998.044602, + "asctime": "2020-12-21 22:33:00,255", + "created": 1608586380.255072, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2556,25 +2616,25 @@ "10", "45054" ], - "asctime": "2020-01-29 07:23:18,043", - "created": 1580278998.043882, + "asctime": "2020-12-21 22:33:00,254", + "created": 1608586380.254627, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 309, + "lineno": 327, "message": "SJP: TIMEOUT (0.1s): Requested data (service_id: 10; data_id: 45054) not in buffer.", "module": "__init__", - "msecs": 43.881893157958984, + "msecs": 254.62698936462402, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 10936.282873153687, - "thread": 140487175731008, + "relativeCreated": 10948.365926742554, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -2583,8 +2643,8 @@ "None", "" ], - "asctime": "2020-01-29 07:23:18,044", - "created": 1580278998.04423, + "asctime": "2020-12-21 22:33:00,254", + "created": 1608586380.254854, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2594,14 +2654,14 @@ "lineno": 22, "message": "Result (Return Value (response instance) for pure_json_protocol.receive with data data_id 0xaffe): None ()", "module": "test", - "msecs": 44.229984283447266, + "msecs": 254.8539638519287, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 10936.630964279175, - "thread": 140487175731008, + "relativeCreated": 10948.592901229858, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -2610,8 +2670,8 @@ "None", "" ], - "asctime": "2020-01-29 07:23:18,044", - "created": 1580278998.044424, + "asctime": "2020-12-21 22:33:00,254", + "created": 1608586380.254964, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2621,39 +2681,39 @@ "lineno": 26, "message": "Expectation (Return Value (response instance) for pure_json_protocol.receive with data data_id 0xaffe): result = None ()", "module": "test", - "msecs": 44.42405700683594, + "msecs": 254.96411323547363, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 10936.825037002563, - "thread": 140487175731008, + "relativeCreated": 10948.703050613403, + "thread": 140534768363328, "threadName": "MainThread" } ], - "msecs": 44.6019172668457, + "msecs": 255.07211685180664, "msg": "Return Value (response instance) for pure_json_protocol.receive with data data_id 0xaffe is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 10937.002897262573, - "thread": 140487175731008, + "relativeCreated": 10948.811054229736, + "thread": 140534768363328, "threadName": "MainThread", - "time_consumption": 0.00017786026000976562 + "time_consumption": 0.00010800361633300781 } ], - "thread": 140487175731008, + "thread": 140534768363328, "threadName": "MainThread", - "time_consumption": 1.4117448329925537, - "time_finished": "2020-01-29 07:23:18,044", - "time_start": "2020-01-29 07:23:16,632" + "time_consumption": 1.4090850353240967, + "time_finished": "2020-12-21 22:33:00,255", + "time_start": "2020-12-21 22:32:58,845" }, "socket_protocol.pure_json_protocol: Checksum corumpation while sending.": { "args": null, - "asctime": "2020-01-29 07:23:14,012", - "created": 1580278994.012356, + "asctime": "2020-12-21 22:32:56,220", + "created": 1608586376.220752, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -2664,18 +2724,18 @@ "message": "socket_protocol.pure_json_protocol: Checksum corumpation while sending.", "module": "__init__", "moduleLogger": [], - "msecs": 12.356042861938477, + "msecs": 220.75200080871582, "msg": "socket_protocol.pure_json_protocol: Checksum corumpation while sending.", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 6904.757022857666, + "relativeCreated": 6914.4909381866455, "testcaseLogger": [ { "args": [], - "asctime": "2020-01-29 07:23:14,314", - "created": 1580278994.314076, + "asctime": "2020-12-21 22:32:56,524", + "created": 1608586376.524177, "exc_info": null, "exc_text": null, "filename": "test_communication_errors.py", @@ -2690,100 +2750,100 @@ "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:14,012", - "created": 1580278994.012512, + "asctime": "2020-12-21 22:32:56,221", + "created": 1608586376.221096, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 295, + "lineno": 313, "message": "SJP: Cleaning up receive-buffer", "module": "__init__", - "msecs": 12.511968612670898, + "msecs": 221.09603881835938, "msg": "%s Cleaning up receive-buffer", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 6904.912948608398, - "thread": 140487175731008, + "relativeCreated": 6914.834976196289, + "thread": 140534768363328, "threadName": "MainThread" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:14,012", - "created": 1580278994.012704, + "asctime": "2020-12-21 22:32:56,221", + "created": 1608586376.221474, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 199, + "lineno": 217, "message": "SJP: Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "module": "__init__", - "msecs": 12.703895568847656, + "msecs": 221.47393226623535, "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 6905.104875564575, - "thread": 140487175731008, + "relativeCreated": 6915.212869644165, + "thread": 140534768363328, "threadName": "MainThread" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:14,012", - "created": 1580278994.012812, + "asctime": "2020-12-21 22:32:56,221", + "created": 1608586376.221696, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 295, + "lineno": 313, "message": "SJP: Cleaning up receive-buffer", "module": "__init__", - "msecs": 12.811899185180664, + "msecs": 221.6958999633789, "msg": "%s Cleaning up receive-buffer", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 6905.212879180908, - "thread": 140487175731008, + "relativeCreated": 6915.434837341309, + "thread": 140534768363328, "threadName": "MainThread" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:14,013", - "created": 1580278994.013, + "asctime": "2020-12-21 22:32:56,222", + "created": 1608586376.222016, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 199, + "lineno": 217, "message": "SJP: Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "module": "__init__", - "msecs": 13.000011444091797, + "msecs": 222.0160961151123, "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 6905.400991439819, - "thread": 140487175731008, + "relativeCreated": 6915.755033493042, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -2794,31 +2854,31 @@ 45054, "{u'test': u'test'}" ], - "asctime": "2020-01-29 07:23:14,013", - "created": 1580278994.013132, + "asctime": "2020-12-21 22:32:56,222", + "created": 1608586376.222273, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 334, + "lineno": 352, "message": "SJP: TX -> status: 0, service_id: 10, data_id: 45054, data: \"{u'test': u'test'}\"", "module": "__init__", - "msecs": 13.132095336914062, + "msecs": 222.2731113433838, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 6905.533075332642, - "thread": 140487175731008, + "relativeCreated": 6916.0120487213135, + "thread": 140534768363328, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-01-29 07:23:14,013", - "created": 1580278994.01342, + "asctime": "2020-12-21 22:32:56,222", + "created": 1608586376.222794, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -2828,20 +2888,20 @@ "lineno": 55, "message": "Send data: (79): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 7d 63 ee c4 24", "module": "test_helpers", - "msecs": 13.42010498046875, + "msecs": 222.7940559387207, "msg": "Send data: (79): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 7d 63 ee c4 24", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 6905.821084976196, - "thread": 140487175731008, + "relativeCreated": 6916.53299331665, + "thread": 140534768363328, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-01-29 07:23:14,164", - "created": 1580278994.164034, + "asctime": "2020-12-21 22:32:56,374", + "created": 1608586376.374005, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -2851,14 +2911,14 @@ "lineno": 66, "message": "Receive data (79): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 7d 63 ee c4 25", "module": "test_helpers", - "msecs": 164.0338897705078, + "msecs": 374.0050792694092, "msg": "Receive data (79): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 7d 63 ee c4 25", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 7056.434869766235, - "thread": 140487116760832, + "relativeCreated": 7067.744016647339, + "thread": 140534747334400, "threadName": "Thread-23" }, { @@ -2866,46 +2926,46 @@ "SJP:", "(79): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 7d 63 ee c4 25" ], - "asctime": "2020-01-29 07:23:14,164", - "created": 1580278994.164335, + "asctime": "2020-12-21 22:32:56,374", + "created": 1608586376.374546, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "WARNING", "levelno": 30, - "lineno": 238, + "lineno": 256, "message": "SJP: Received message has a wrong checksum and will be ignored: (79): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 7d 63 ee c4 25.", "module": "__init__", - "msecs": 164.3350124359131, + "msecs": 374.5460510253906, "msg": "%s Received message has a wrong checksum and will be ignored: %s.", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 7056.735992431641, - "thread": 140487116760832, + "relativeCreated": 7068.28498840332, + "thread": 140534747334400, "threadName": "Thread-23" } ], - "msecs": 314.0759468078613, + "msecs": 524.177074432373, "msg": "Send data with wrong checksum by pure_json_protocol.", "name": "__tLogger__", "pathname": "src/tests/test_communication_errors.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 7206.476926803589, - "thread": 140487175731008, + "relativeCreated": 7217.916011810303, + "thread": 140534768363328, "threadName": "MainThread", - "time_consumption": 0.14974093437194824 + "time_consumption": 0.14963102340698242 }, { "args": [ "True", "" ], - "asctime": "2020-01-29 07:23:14,314", - "created": 1580278994.314462, + "asctime": "2020-12-21 22:32:56,525", + "created": 1608586376.525582, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2922,8 +2982,8 @@ "True", "" ], - "asctime": "2020-01-29 07:23:14,314", - "created": 1580278994.314305, + "asctime": "2020-12-21 22:32:56,525", + "created": 1608586376.525032, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2933,14 +2993,14 @@ "lineno": 22, "message": "Result (Return value of send method): True ()", "module": "test", - "msecs": 314.30506706237793, + "msecs": 525.0320434570312, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 7206.7060470581055, - "thread": 140487175731008, + "relativeCreated": 7218.770980834961, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -2949,8 +3009,8 @@ "True", "" ], - "asctime": "2020-01-29 07:23:14,314", - "created": 1580278994.314381, + "asctime": "2020-12-21 22:32:56,525", + "created": 1608586376.525279, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -2960,35 +3020,35 @@ "lineno": 26, "message": "Expectation (Return value of send method): result = True ()", "module": "test", - "msecs": 314.3808841705322, + "msecs": 525.2790451049805, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 7206.78186416626, - "thread": 140487175731008, + "relativeCreated": 7219.01798248291, + "thread": 140534768363328, "threadName": "MainThread" } ], - "msecs": 314.46194648742676, + "msecs": 525.5820751190186, "msg": "Return value of send method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 7206.862926483154, - "thread": 140487175731008, + "relativeCreated": 7219.321012496948, + "thread": 140534768363328, "threadName": "MainThread", - "time_consumption": 8.106231689453125e-05 + "time_consumption": 0.00030303001403808594 }, { "args": [ "False", "" ], - "asctime": "2020-01-29 07:23:14,314", - "created": 1580278994.314694, + "asctime": "2020-12-21 22:32:56,525", + "created": 1608586376.525837, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -3005,8 +3065,8 @@ "False", "" ], - "asctime": "2020-01-29 07:23:14,314", - "created": 1580278994.3146, + "asctime": "2020-12-21 22:32:56,525", + "created": 1608586376.525723, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -3016,14 +3076,14 @@ "lineno": 22, "message": "Result (Callback executed variable): False ()", "module": "test", - "msecs": 314.59999084472656, + "msecs": 525.7229804992676, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 7207.000970840454, - "thread": 140487175731008, + "relativeCreated": 7219.461917877197, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -3032,8 +3092,8 @@ "False", "" ], - "asctime": "2020-01-29 07:23:14,314", - "created": 1580278994.31465, + "asctime": "2020-12-21 22:32:56,525", + "created": 1608586376.525781, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -3043,35 +3103,35 @@ "lineno": 26, "message": "Expectation (Callback executed variable): result = False ()", "module": "test", - "msecs": 314.6500587463379, + "msecs": 525.7809162139893, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 7207.051038742065, - "thread": 140487175731008, + "relativeCreated": 7219.519853591919, + "thread": 140534768363328, "threadName": "MainThread" } ], - "msecs": 314.6939277648926, + "msecs": 525.8369445800781, "msg": "Callback executed variable is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 7207.09490776062, - "thread": 140487175731008, + "relativeCreated": 7219.575881958008, + "thread": 140534768363328, "threadName": "MainThread", - "time_consumption": 4.38690185546875e-05 + "time_consumption": 5.602836608886719e-05 }, { "args": [ "None", "" ], - "asctime": "2020-01-29 07:23:14,415", - "created": 1580278994.415264, + "asctime": "2020-12-21 22:32:56,626", + "created": 1608586376.626423, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -3089,25 +3149,25 @@ "11", "45054" ], - "asctime": "2020-01-29 07:23:14,414", - "created": 1580278994.414977, + "asctime": "2020-12-21 22:32:56,626", + "created": 1608586376.626153, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 309, + "lineno": 327, "message": "SJP: TIMEOUT (0.1s): Requested data (service_id: 11; data_id: 45054) not in buffer.", "module": "__init__", - "msecs": 414.9770736694336, + "msecs": 626.1529922485352, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 7307.378053665161, - "thread": 140487175731008, + "relativeCreated": 7319.891929626465, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -3116,8 +3176,8 @@ "None", "" ], - "asctime": "2020-01-29 07:23:14,415", - "created": 1580278994.415131, + "asctime": "2020-12-21 22:32:56,626", + "created": 1608586376.626297, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -3127,14 +3187,14 @@ "lineno": 22, "message": "Result (Return Value (request instance) for pure_json_protocol.receive with data data_id 0xaffe): None ()", "module": "test", - "msecs": 415.1310920715332, + "msecs": 626.2969970703125, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 7307.532072067261, - "thread": 140487175731008, + "relativeCreated": 7320.035934448242, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -3143,8 +3203,8 @@ "None", "" ], - "asctime": "2020-01-29 07:23:14,415", - "created": 1580278994.415199, + "asctime": "2020-12-21 22:32:56,626", + "created": 1608586376.626357, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -3154,35 +3214,35 @@ "lineno": 26, "message": "Expectation (Return Value (request instance) for pure_json_protocol.receive with data data_id 0xaffe): result = None ()", "module": "test", - "msecs": 415.19904136657715, + "msecs": 626.3570785522461, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 7307.600021362305, - "thread": 140487175731008, + "relativeCreated": 7320.096015930176, + "thread": 140534768363328, "threadName": "MainThread" } ], - "msecs": 415.2638912200928, + "msecs": 626.4228820800781, "msg": "Return Value (request instance) for pure_json_protocol.receive with data data_id 0xaffe is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 7307.66487121582, - "thread": 140487175731008, + "relativeCreated": 7320.161819458008, + "thread": 140534768363328, "threadName": "MainThread", - "time_consumption": 6.4849853515625e-05 + "time_consumption": 6.580352783203125e-05 }, { "args": [ "None", "" ], - "asctime": "2020-01-29 07:23:14,516", - "created": 1580278994.516152, + "asctime": "2020-12-21 22:32:56,727", + "created": 1608586376.727201, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -3200,25 +3260,25 @@ "10", "45054" ], - "asctime": "2020-01-29 07:23:14,515", - "created": 1580278994.515845, + "asctime": "2020-12-21 22:32:56,726", + "created": 1608586376.72679, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 309, + "lineno": 327, "message": "SJP: TIMEOUT (0.1s): Requested data (service_id: 10; data_id: 45054) not in buffer.", "module": "__init__", - "msecs": 515.8450603485107, + "msecs": 726.7899513244629, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 7408.246040344238, - "thread": 140487175731008, + "relativeCreated": 7420.528888702393, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -3227,8 +3287,8 @@ "None", "" ], - "asctime": "2020-01-29 07:23:14,516", - "created": 1580278994.516018, + "asctime": "2020-12-21 22:32:56,726", + "created": 1608586376.726986, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -3238,14 +3298,14 @@ "lineno": 22, "message": "Result (Return Value (response instance) for pure_json_protocol.receive with data data_id 0xaffe): None ()", "module": "test", - "msecs": 516.0179138183594, + "msecs": 726.9859313964844, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 7408.418893814087, - "thread": 140487175731008, + "relativeCreated": 7420.724868774414, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -3254,8 +3314,8 @@ "None", "" ], - "asctime": "2020-01-29 07:23:14,516", - "created": 1580278994.516085, + "asctime": "2020-12-21 22:32:56,727", + "created": 1608586376.727111, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -3265,39 +3325,39 @@ "lineno": 26, "message": "Expectation (Return Value (response instance) for pure_json_protocol.receive with data data_id 0xaffe): result = None ()", "module": "test", - "msecs": 516.0849094390869, + "msecs": 727.1111011505127, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 7408.485889434814, - "thread": 140487175731008, + "relativeCreated": 7420.850038528442, + "thread": 140534768363328, "threadName": "MainThread" } ], - "msecs": 516.1519050598145, + "msecs": 727.200984954834, "msg": "Return Value (response instance) for pure_json_protocol.receive with data data_id 0xaffe is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 7408.552885055542, - "thread": 140487175731008, + "relativeCreated": 7420.939922332764, + "thread": 140534768363328, "threadName": "MainThread", - "time_consumption": 6.699562072753906e-05 + "time_consumption": 8.988380432128906e-05 } ], - "thread": 140487175731008, + "thread": 140534768363328, "threadName": "MainThread", - "time_consumption": 0.503795862197876, - "time_finished": "2020-01-29 07:23:14,516", - "time_start": "2020-01-29 07:23:14,012" + "time_consumption": 0.5064489841461182, + "time_finished": "2020-12-21 22:32:56,727", + "time_start": "2020-12-21 22:32:56,220" }, "socket_protocol.pure_json_protocol: Incompatible Callback return value(s).": { "args": null, - "asctime": "2020-01-29 07:23:18,049", - "created": 1580278998.049642, + "asctime": "2020-12-21 22:33:00,257", + "created": 1608586380.257965, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -3308,18 +3368,18 @@ "message": "socket_protocol.pure_json_protocol: Incompatible Callback return value(s).", "module": "__init__", "moduleLogger": [], - "msecs": 49.642086029052734, + "msecs": 257.965087890625, "msg": "socket_protocol.pure_json_protocol: Incompatible Callback return value(s).", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 10942.04306602478, + "relativeCreated": 10951.704025268555, "testcaseLogger": [ { "args": [], - "asctime": "2020-01-29 07:23:18,055", - "created": 1580278998.055842, + "asctime": "2020-12-21 22:33:00,261", + "created": 1608586380.261393, "exc_info": null, "exc_text": null, "filename": "test_handling_errors.py", @@ -3334,100 +3394,100 @@ "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:18,049", - "created": 1580278998.049935, + "asctime": "2020-12-21 22:33:00,258", + "created": 1608586380.258136, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 295, + "lineno": 313, "message": "SJP: Cleaning up receive-buffer", "module": "__init__", - "msecs": 49.935102462768555, + "msecs": 258.1360340118408, "msg": "%s Cleaning up receive-buffer", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 10942.336082458496, - "thread": 140487175731008, + "relativeCreated": 10951.87497138977, + "thread": 140534768363328, "threadName": "MainThread" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:18,050", - "created": 1580278998.050296, + "asctime": "2020-12-21 22:33:00,258", + "created": 1608586380.258327, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 199, + "lineno": 217, "message": "SJP: Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "module": "__init__", - "msecs": 50.29606819152832, + "msecs": 258.3270072937012, "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 10942.697048187256, - "thread": 140487175731008, + "relativeCreated": 10952.06594467163, + "thread": 140534768363328, "threadName": "MainThread" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:18,050", - "created": 1580278998.050501, + "asctime": "2020-12-21 22:33:00,258", + "created": 1608586380.258441, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 295, + "lineno": 313, "message": "SJP: Cleaning up receive-buffer", "module": "__init__", - "msecs": 50.501108169555664, + "msecs": 258.4409713745117, "msg": "%s Cleaning up receive-buffer", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 10942.902088165283, - "thread": 140487175731008, + "relativeCreated": 10952.179908752441, + "thread": 140534768363328, "threadName": "MainThread" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:18,050", - "created": 1580278998.050821, + "asctime": "2020-12-21 22:33:00,258", + "created": 1608586380.258618, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 199, + "lineno": 217, "message": "SJP: Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "module": "__init__", - "msecs": 50.82106590270996, + "msecs": 258.6181163787842, "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 10943.222045898438, - "thread": 140487175731008, + "relativeCreated": 10952.357053756714, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -3438,31 +3498,31 @@ 45054, "None" ], - "asctime": "2020-01-29 07:23:18,051", - "created": 1580278998.051089, + "asctime": "2020-12-21 22:33:00,258", + "created": 1608586380.258776, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 334, + "lineno": 352, "message": "SJP: TX -> status: 0, service_id: 10, data_id: 45054, data: \"None\"", "module": "__init__", - "msecs": 51.08904838562012, + "msecs": 258.7759494781494, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 10943.490028381348, - "thread": 140487175731008, + "relativeCreated": 10952.51488685608, + "thread": 140534768363328, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-01-29 07:23:18,051", - "created": 1580278998.051553, + "asctime": "2020-12-21 22:33:00,259", + "created": 1608586380.259048, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -3472,20 +3532,20 @@ "lineno": 55, "message": "Send data: (67): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 7d fc 3e bd 5f", "module": "test_helpers", - "msecs": 51.55301094055176, + "msecs": 259.0479850769043, "msg": "Send data: (67): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 7d fc 3e bd 5f", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 10943.95399093628, - "thread": 140487175731008, + "relativeCreated": 10952.786922454834, + "thread": 140534768363328, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-01-29 07:23:18,051", - "created": 1580278998.051969, + "asctime": "2020-12-21 22:33:00,259", + "created": 1608586380.259249, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -3495,14 +3555,14 @@ "lineno": 66, "message": "Receive data (67): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 7d fc 3e bd 5f", "module": "test_helpers", - "msecs": 51.969051361083984, + "msecs": 259.2489719390869, "msg": "Receive data (67): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 7d fc 3e bd 5f", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 10944.370031356812, - "thread": 140487175731008, + "relativeCreated": 10952.987909317017, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -3513,25 +3573,25 @@ "45054", "None" ], - "asctime": "2020-01-29 07:23:18,052", - "created": 1580278998.052262, + "asctime": "2020-12-21 22:33:00,259", + "created": 1608586380.259413, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 247, + "lineno": 265, "message": "SJP: RX <- status: 0, service_id: 10, data_id: 45054, data: \"None\"", "module": "__init__", - "msecs": 52.262067794799805, + "msecs": 259.4130039215088, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 10944.663047790527, - "thread": 140487175731008, + "relativeCreated": 10953.151941299438, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -3539,25 +3599,25 @@ "SJP:", "response_data_method_fail" ], - "asctime": "2020-01-29 07:23:18,052", - "created": 1580278998.052458, + "asctime": "2020-12-21 22:33:00,259", + "created": 1608586380.259523, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 264, + "lineno": 282, "message": "SJP: Executing callback response_data_method_fail to process received data", "module": "__init__", - "msecs": 52.45804786682129, + "msecs": 259.5229148864746, "msg": "%s Executing callback %s to process received data", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 10944.859027862549, - "thread": 140487175731008, + "relativeCreated": 10953.261852264404, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -3568,31 +3628,31 @@ 48879, "None" ], - "asctime": "2020-01-29 07:23:18,052", - "created": 1580278998.052794, + "asctime": "2020-12-21 22:33:00,259", + "created": 1608586380.259642, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 334, + "lineno": 352, "message": "SJP: TX -> status: 0, service_id: 10, data_id: 48879, data: \"None\"", "module": "__init__", - "msecs": 52.79397964477539, + "msecs": 259.6418857574463, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 10945.194959640503, - "thread": 140487175731008, + "relativeCreated": 10953.380823135376, + "thread": 140534768363328, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-01-29 07:23:18,053", - "created": 1580278998.053256, + "asctime": "2020-12-21 22:33:00,259", + "created": 1608586380.259892, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -3602,20 +3662,20 @@ "lineno": 55, "message": "Send data: (67): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 7d 77 30 fb 22", "module": "test_helpers", - "msecs": 53.25603485107422, + "msecs": 259.8919868469238, "msg": "Send data: (67): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 7d 77 30 fb 22", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 10945.657014846802, - "thread": 140487175731008, + "relativeCreated": 10953.630924224854, + "thread": 140534768363328, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-01-29 07:23:18,053", - "created": 1580278998.053628, + "asctime": "2020-12-21 22:33:00,260", + "created": 1608586380.260099, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -3625,14 +3685,14 @@ "lineno": 66, "message": "Receive data (67): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 7d 77 30 fb 22", "module": "test_helpers", - "msecs": 53.627967834472656, + "msecs": 260.098934173584, "msg": "Receive data (67): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 7d 77 30 fb 22", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 10946.0289478302, - "thread": 140487175731008, + "relativeCreated": 10953.837871551514, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -3643,50 +3703,50 @@ "48879", "None" ], - "asctime": "2020-01-29 07:23:18,053", - "created": 1580278998.053878, + "asctime": "2020-12-21 22:33:00,260", + "created": 1608586380.260239, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 247, + "lineno": 265, "message": "SJP: RX <- status: 0, service_id: 10, data_id: 48879, data: \"None\"", "module": "__init__", - "msecs": 53.878068923950195, + "msecs": 260.2388858795166, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 10946.279048919678, - "thread": 140487175731008, + "relativeCreated": 10953.977823257446, + "thread": 140534768363328, "threadName": "MainThread" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:18,054", - "created": 1580278998.054096, + "asctime": "2020-12-21 22:33:00,260", + "created": 1608586380.260371, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "WARNING", "levelno": 30, - "lineno": 259, + "lineno": 277, "message": "SJP: Received message with no registered callback. Sending negative response.", "module": "__init__", - "msecs": 54.09598350524902, + "msecs": 260.37096977233887, "msg": "%s Received message with no registered callback. Sending negative response.", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 10946.496963500977, - "thread": 140487175731008, + "relativeCreated": 10954.109907150269, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -3697,31 +3757,31 @@ 48879, "None" ], - "asctime": "2020-01-29 07:23:18,054", - "created": 1580278998.054287, + "asctime": "2020-12-21 22:33:00,260", + "created": 1608586380.260481, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 334, + "lineno": 352, "message": "SJP: TX -> status: 1, service_id: 11, data_id: 48879, data: \"None\"", "module": "__init__", - "msecs": 54.286956787109375, + "msecs": 260.4811191558838, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 10946.687936782837, - "thread": 140487175731008, + "relativeCreated": 10954.220056533813, + "thread": 140534768363328, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-01-29 07:23:18,054", - "created": 1580278998.054711, + "asctime": "2020-12-21 22:33:00,260", + "created": 1608586380.260739, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -3731,20 +3791,20 @@ "lineno": 55, "message": "Send data: (67): 7b 22 73 74 61 74 75 73 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 7d 3a 7e 56 19", "module": "test_helpers", - "msecs": 54.711103439331055, + "msecs": 260.7390880584717, "msg": "Send data: (67): 7b 22 73 74 61 74 75 73 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 7d 3a 7e 56 19", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 10947.112083435059, - "thread": 140487175731008, + "relativeCreated": 10954.478025436401, + "thread": 140534768363328, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-01-29 07:23:18,055", - "created": 1580278998.055055, + "asctime": "2020-12-21 22:33:00,260", + "created": 1608586380.260939, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -3754,14 +3814,14 @@ "lineno": 66, "message": "Receive data (67): 7b 22 73 74 61 74 75 73 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 7d 3a 7e 56 19", "module": "test_helpers", - "msecs": 55.05490303039551, + "msecs": 260.9388828277588, "msg": "Receive data (67): 7b 22 73 74 61 74 75 73 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 7d 3a 7e 56 19", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 10947.455883026123, - "thread": 140487175731008, + "relativeCreated": 10954.677820205688, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -3772,25 +3832,25 @@ "48879", "None" ], - "asctime": "2020-01-29 07:23:18,055", - "created": 1580278998.055298, + "asctime": "2020-12-21 22:33:00,261", + "created": 1608586380.261077, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 247, + "lineno": 265, "message": "SJP: RX <- status: 1, service_id: 11, data_id: 48879, data: \"None\"", "module": "__init__", - "msecs": 55.2980899810791, + "msecs": 261.0769271850586, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 10947.699069976807, - "thread": 140487175731008, + "relativeCreated": 10954.815864562988, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -3798,25 +3858,25 @@ "SJP:", "Request has no callback. Data buffered." ], - "asctime": "2020-01-29 07:23:18,055", - "created": 1580278998.055495, + "asctime": "2020-12-21 22:33:00,261", + "created": 1608586380.261186, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "WARNING", "levelno": 30, - "lineno": 274, + "lineno": 292, "message": "SJP: Received message has a peculiar status: Request has no callback. Data buffered.", "module": "__init__", - "msecs": 55.49502372741699, + "msecs": 261.185884475708, "msg": "%s Received message has a peculiar status: %s", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 10947.896003723145, - "thread": 140487175731008, + "relativeCreated": 10954.924821853638, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -3824,46 +3884,46 @@ "SJP:", "response_data_method_fail" ], - "asctime": "2020-01-29 07:23:18,055", - "created": 1580278998.055645, + "asctime": "2020-12-21 22:33:00,261", + "created": 1608586380.26128, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 281, + "lineno": 299, "message": "SJP: Executing callback response_data_method_fail to process received data", "module": "__init__", - "msecs": 55.644989013671875, + "msecs": 261.2800598144531, "msg": "%s Executing callback %s to process received data", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 10948.0459690094, - "thread": 140487175731008, + "relativeCreated": 10955.018997192383, + "thread": 140534768363328, "threadName": "MainThread" } ], - "msecs": 55.841922760009766, + "msecs": 261.39307022094727, "msg": "Send and received data with incompatible callback (pure_json_protocol).", "name": "__tLogger__", "pathname": "src/tests/test_handling_errors.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 10948.242902755737, - "thread": 140487175731008, + "relativeCreated": 10955.132007598877, + "thread": 140534768363328, "threadName": "MainThread", - "time_consumption": 0.00019693374633789062 + "time_consumption": 0.00011301040649414062 }, { "args": [ "True", "" ], - "asctime": "2020-01-29 07:23:18,056", - "created": 1580278998.05647, + "asctime": "2020-12-21 22:33:00,261", + "created": 1608586380.261753, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -3880,8 +3940,8 @@ "True", "" ], - "asctime": "2020-01-29 07:23:18,056", - "created": 1580278998.056161, + "asctime": "2020-12-21 22:33:00,261", + "created": 1608586380.261568, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -3891,14 +3951,14 @@ "lineno": 22, "message": "Result (Exception (TypeError) detection variable): True ()", "module": "test", - "msecs": 56.160926818847656, + "msecs": 261.5680694580078, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 10948.561906814575, - "thread": 140487175731008, + "relativeCreated": 10955.307006835938, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -3907,8 +3967,8 @@ "True", "" ], - "asctime": "2020-01-29 07:23:18,056", - "created": 1580278998.056317, + "asctime": "2020-12-21 22:33:00,261", + "created": 1608586380.261659, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -3918,35 +3978,35 @@ "lineno": 26, "message": "Expectation (Exception (TypeError) detection variable): result = True ()", "module": "test", - "msecs": 56.31709098815918, + "msecs": 261.6589069366455, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 10948.718070983887, - "thread": 140487175731008, + "relativeCreated": 10955.397844314575, + "thread": 140534768363328, "threadName": "MainThread" } ], - "msecs": 56.46991729736328, + "msecs": 261.7530822753906, "msg": "Exception (TypeError) detection variable is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 10948.87089729309, - "thread": 140487175731008, + "relativeCreated": 10955.49201965332, + "thread": 140534768363328, "threadName": "MainThread", - "time_consumption": 0.00015282630920410156 + "time_consumption": 9.417533874511719e-05 }, { "args": [ "None", "" ], - "asctime": "2020-01-29 07:23:18,157", - "created": 1580278998.157715, + "asctime": "2020-12-21 22:33:00,362", + "created": 1608586380.362601, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -3964,25 +4024,25 @@ "11", "45054" ], - "asctime": "2020-01-29 07:23:18,157", - "created": 1580278998.15705, + "asctime": "2020-12-21 22:33:00,362", + "created": 1608586380.362144, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 309, + "lineno": 327, "message": "SJP: TIMEOUT (0.1s): Requested data (service_id: 11; data_id: 45054) not in buffer.", "module": "__init__", - "msecs": 157.04989433288574, + "msecs": 362.14399337768555, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 11049.450874328613, - "thread": 140487175731008, + "relativeCreated": 11055.882930755615, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -3991,8 +4051,8 @@ "None", "" ], - "asctime": "2020-01-29 07:23:18,157", - "created": 1580278998.157387, + "asctime": "2020-12-21 22:33:00,362", + "created": 1608586380.362371, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -4002,14 +4062,14 @@ "lineno": 22, "message": "Result (Return Value (request instance) for pure_json_protocol.receive with data data_id 0xaffe): None ()", "module": "test", - "msecs": 157.38701820373535, + "msecs": 362.37096786499023, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 11049.787998199463, - "thread": 140487175731008, + "relativeCreated": 11056.10990524292, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -4018,8 +4078,8 @@ "None", "" ], - "asctime": "2020-01-29 07:23:18,157", - "created": 1580278998.157559, + "asctime": "2020-12-21 22:33:00,362", + "created": 1608586380.362481, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -4029,35 +4089,35 @@ "lineno": 26, "message": "Expectation (Return Value (request instance) for pure_json_protocol.receive with data data_id 0xaffe): result = None ()", "module": "test", - "msecs": 157.55891799926758, + "msecs": 362.48111724853516, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 11049.959897994995, - "thread": 140487175731008, + "relativeCreated": 11056.220054626465, + "thread": 140534768363328, "threadName": "MainThread" } ], - "msecs": 157.7150821685791, + "msecs": 362.60104179382324, "msg": "Return Value (request instance) for pure_json_protocol.receive with data data_id 0xaffe is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 11050.116062164307, - "thread": 140487175731008, + "relativeCreated": 11056.339979171753, + "thread": 140534768363328, "threadName": "MainThread", - "time_consumption": 0.00015616416931152344 + "time_consumption": 0.00011992454528808594 }, { "args": [ "None", "" ], - "asctime": "2020-01-29 07:23:18,258", - "created": 1580278998.258988, + "asctime": "2020-12-21 22:33:00,463", + "created": 1608586380.463856, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -4075,25 +4135,25 @@ "10", "45054" ], - "asctime": "2020-01-29 07:23:18,258", - "created": 1580278998.258278, + "asctime": "2020-12-21 22:33:00,463", + "created": 1608586380.463125, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 309, + "lineno": 327, "message": "SJP: TIMEOUT (0.1s): Requested data (service_id: 10; data_id: 45054) not in buffer.", "module": "__init__", - "msecs": 258.27789306640625, + "msecs": 463.12499046325684, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 11150.678873062134, - "thread": 140487175731008, + "relativeCreated": 11156.863927841187, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -4102,8 +4162,8 @@ "None", "" ], - "asctime": "2020-01-29 07:23:18,258", - "created": 1580278998.258618, + "asctime": "2020-12-21 22:33:00,463", + "created": 1608586380.463486, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -4113,14 +4173,14 @@ "lineno": 22, "message": "Result (Return Value (response instance) for pure_json_protocol.receive with data data_id 0xaffe): None ()", "module": "test", - "msecs": 258.6181163787842, + "msecs": 463.4859561920166, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 11151.019096374512, - "thread": 140487175731008, + "relativeCreated": 11157.224893569946, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -4129,8 +4189,8 @@ "None", "" ], - "asctime": "2020-01-29 07:23:18,258", - "created": 1580278998.25881, + "asctime": "2020-12-21 22:33:00,463", + "created": 1608586380.463677, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -4140,35 +4200,35 @@ "lineno": 26, "message": "Expectation (Return Value (response instance) for pure_json_protocol.receive with data data_id 0xaffe): result = None ()", "module": "test", - "msecs": 258.81004333496094, + "msecs": 463.67692947387695, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 11151.211023330688, - "thread": 140487175731008, + "relativeCreated": 11157.415866851807, + "thread": 140534768363328, "threadName": "MainThread" } ], - "msecs": 258.9879035949707, + "msecs": 463.8559818267822, "msg": "Return Value (response instance) for pure_json_protocol.receive with data data_id 0xaffe is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 11151.388883590698, - "thread": 140487175731008, + "relativeCreated": 11157.594919204712, + "thread": 140534768363328, "threadName": "MainThread", - "time_consumption": 0.00017786026000976562 + "time_consumption": 0.00017905235290527344 }, { "args": [ "True", "" ], - "asctime": "2020-01-29 07:23:18,259", - "created": 1580278998.259614, + "asctime": "2020-12-21 22:33:00,464", + "created": 1608586380.464484, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -4185,8 +4245,8 @@ "True", "" ], - "asctime": "2020-01-29 07:23:18,259", - "created": 1580278998.259302, + "asctime": "2020-12-21 22:33:00,464", + "created": 1608586380.464172, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -4196,14 +4256,14 @@ "lineno": 22, "message": "Result (Exception (TypeError) detection variable): True ()", "module": "test", - "msecs": 259.30190086364746, + "msecs": 464.1718864440918, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 11151.702880859375, - "thread": 140487175731008, + "relativeCreated": 11157.910823822021, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -4212,8 +4272,8 @@ "True", "" ], - "asctime": "2020-01-29 07:23:18,259", - "created": 1580278998.25946, + "asctime": "2020-12-21 22:33:00,464", + "created": 1608586380.464331, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -4223,35 +4283,35 @@ "lineno": 26, "message": "Expectation (Exception (TypeError) detection variable): result = True ()", "module": "test", - "msecs": 259.4599723815918, + "msecs": 464.33091163635254, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 11151.86095237732, - "thread": 140487175731008, + "relativeCreated": 11158.069849014282, + "thread": 140534768363328, "threadName": "MainThread" } ], - "msecs": 259.6139907836914, + "msecs": 464.48397636413574, "msg": "Exception (TypeError) detection variable is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 11152.014970779419, - "thread": 140487175731008, + "relativeCreated": 11158.222913742065, + "thread": 140534768363328, "threadName": "MainThread", - "time_consumption": 0.00015401840209960938 + "time_consumption": 0.00015306472778320312 }, { "args": [ "None", "" ], - "asctime": "2020-01-29 07:23:18,360", - "created": 1580278998.360594, + "asctime": "2020-12-21 22:33:00,565", + "created": 1608586380.565509, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -4269,25 +4329,25 @@ "11", "48879" ], - "asctime": "2020-01-29 07:23:18,360", - "created": 1580278998.360118, + "asctime": "2020-12-21 22:33:00,564", + "created": 1608586380.56498, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 309, + "lineno": 327, "message": "SJP: TIMEOUT (0.1s): Requested data (service_id: 11; data_id: 48879) not in buffer.", "module": "__init__", - "msecs": 360.11791229248047, + "msecs": 564.9800300598145, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 11252.518892288208, - "thread": 140487175731008, + "relativeCreated": 11258.718967437744, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -4296,8 +4356,8 @@ "None", "" ], - "asctime": "2020-01-29 07:23:18,360", - "created": 1580278998.360364, + "asctime": "2020-12-21 22:33:00,565", + "created": 1608586380.565227, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -4307,14 +4367,14 @@ "lineno": 22, "message": "Result (Return Value (request instance) for pure_json_protocol.receive with data data_id 0xbeef): None ()", "module": "test", - "msecs": 360.3639602661133, + "msecs": 565.2270317077637, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 11252.76494026184, - "thread": 140487175731008, + "relativeCreated": 11258.965969085693, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -4323,8 +4383,8 @@ "None", "" ], - "asctime": "2020-01-29 07:23:18,360", - "created": 1580278998.360483, + "asctime": "2020-12-21 22:33:00,565", + "created": 1608586380.565385, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -4334,35 +4394,35 @@ "lineno": 26, "message": "Expectation (Return Value (request instance) for pure_json_protocol.receive with data data_id 0xbeef): result = None ()", "module": "test", - "msecs": 360.48293113708496, + "msecs": 565.385103225708, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 11252.883911132812, - "thread": 140487175731008, + "relativeCreated": 11259.124040603638, + "thread": 140534768363328, "threadName": "MainThread" } ], - "msecs": 360.5940341949463, + "msecs": 565.5090808868408, "msg": "Return Value (request instance) for pure_json_protocol.receive with data data_id 0xbeef is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 11252.995014190674, - "thread": 140487175731008, + "relativeCreated": 11259.24801826477, + "thread": 140534768363328, "threadName": "MainThread", - "time_consumption": 0.00011110305786132812 + "time_consumption": 0.0001239776611328125 }, { "args": [ "None", "" ], - "asctime": "2020-01-29 07:23:18,461", - "created": 1580278998.461894, + "asctime": "2020-12-21 22:33:00,666", + "created": 1608586380.666766, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -4380,25 +4440,25 @@ "10", "48879" ], - "asctime": "2020-01-29 07:23:18,461", - "created": 1580278998.461104, + "asctime": "2020-12-21 22:33:00,666", + "created": 1608586380.666028, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 309, + "lineno": 327, "message": "SJP: TIMEOUT (0.1s): Requested data (service_id: 10; data_id: 48879) not in buffer.", "module": "__init__", - "msecs": 461.1039161682129, + "msecs": 666.0280227661133, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 11353.50489616394, - "thread": 140487175731008, + "relativeCreated": 11359.766960144043, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -4407,8 +4467,8 @@ "None", "" ], - "asctime": "2020-01-29 07:23:18,461", - "created": 1580278998.461481, + "asctime": "2020-12-21 22:33:00,666", + "created": 1608586380.666389, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -4418,14 +4478,14 @@ "lineno": 22, "message": "Result (Return Value (response instance) for pure_json_protocol.receive with data data_id 0xbeef): None ()", "module": "test", - "msecs": 461.48109436035156, + "msecs": 666.388988494873, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 11353.88207435608, - "thread": 140487175731008, + "relativeCreated": 11360.127925872803, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -4434,8 +4494,8 @@ "None", "" ], - "asctime": "2020-01-29 07:23:18,461", - "created": 1580278998.461698, + "asctime": "2020-12-21 22:33:00,666", + "created": 1608586380.666584, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -4445,39 +4505,39 @@ "lineno": 26, "message": "Expectation (Return Value (response instance) for pure_json_protocol.receive with data data_id 0xbeef): result = None ()", "module": "test", - "msecs": 461.698055267334, + "msecs": 666.5840148925781, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 11354.099035263062, - "thread": 140487175731008, + "relativeCreated": 11360.322952270508, + "thread": 140534768363328, "threadName": "MainThread" } ], - "msecs": 461.89403533935547, + "msecs": 666.7659282684326, "msg": "Return Value (response instance) for pure_json_protocol.receive with data data_id 0xbeef is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 11354.295015335083, - "thread": 140487175731008, + "relativeCreated": 11360.504865646362, + "thread": 140534768363328, "threadName": "MainThread", - "time_consumption": 0.00019598007202148438 + "time_consumption": 0.0001819133758544922 } ], - "thread": 140487175731008, + "thread": 140534768363328, "threadName": "MainThread", - "time_consumption": 0.41225194931030273, - "time_finished": "2020-01-29 07:23:18,461", - "time_start": "2020-01-29 07:23:18,049" + "time_consumption": 0.4088008403778076, + "time_finished": "2020-12-21 22:33:00,666", + "time_start": "2020-12-21 22:33:00,257" }, "socket_protocol.pure_json_protocol: No Callback at response instance for the request.": { "args": null, - "asctime": "2020-01-29 07:23:15,924", - "created": 1580278995.924614, + "asctime": "2020-12-21 22:32:58,136", + "created": 1608586378.13655, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -4488,18 +4548,18 @@ "message": "socket_protocol.pure_json_protocol: No Callback at response instance for the request.", "module": "__init__", "moduleLogger": [], - "msecs": 924.6139526367188, + "msecs": 136.5499496459961, "msg": "socket_protocol.pure_json_protocol: No Callback at response instance for the request.", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 8817.014932632446, + "relativeCreated": 8830.288887023926, "testcaseLogger": [ { "args": [], - "asctime": "2020-01-29 07:23:16,428", - "created": 1580278996.428302, + "asctime": "2020-12-21 22:32:58,640", + "created": 1608586378.640819, "exc_info": null, "exc_text": null, "filename": "test_handling_errors.py", @@ -4514,100 +4574,100 @@ "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:15,924", - "created": 1580278995.924931, + "asctime": "2020-12-21 22:32:58,136", + "created": 1608586378.13694, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 295, + "lineno": 313, "message": "SJP: Cleaning up receive-buffer", "module": "__init__", - "msecs": 924.9310493469238, + "msecs": 136.94000244140625, "msg": "%s Cleaning up receive-buffer", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 8817.332029342651, - "thread": 140487175731008, + "relativeCreated": 8830.678939819336, + "thread": 140534768363328, "threadName": "MainThread" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:15,925", - "created": 1580278995.925342, + "asctime": "2020-12-21 22:32:58,137", + "created": 1608586378.137322, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 199, + "lineno": 217, "message": "SJP: Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "module": "__init__", - "msecs": 925.3420829772949, + "msecs": 137.32194900512695, "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 8817.743062973022, - "thread": 140487175731008, + "relativeCreated": 8831.060886383057, + "thread": 140534768363328, "threadName": "MainThread" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:15,925", - "created": 1580278995.925552, + "asctime": "2020-12-21 22:32:58,137", + "created": 1608586378.137546, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 295, + "lineno": 313, "message": "SJP: Cleaning up receive-buffer", "module": "__init__", - "msecs": 925.5518913269043, + "msecs": 137.54606246948242, "msg": "%s Cleaning up receive-buffer", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 8817.952871322632, - "thread": 140487175731008, + "relativeCreated": 8831.284999847412, + "thread": 140534768363328, "threadName": "MainThread" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:15,925", - "created": 1580278995.92587, + "asctime": "2020-12-21 22:32:58,137", + "created": 1608586378.137873, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 199, + "lineno": 217, "message": "SJP: Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "module": "__init__", - "msecs": 925.8699417114258, + "msecs": 137.87293434143066, "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 8818.270921707153, - "thread": 140487175731008, + "relativeCreated": 8831.61187171936, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -4618,31 +4678,31 @@ 45054, "{u'test': u'test'}" ], - "asctime": "2020-01-29 07:23:15,926", - "created": 1580278995.926075, + "asctime": "2020-12-21 22:32:58,138", + "created": 1608586378.138079, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 334, + "lineno": 352, "message": "SJP: TX -> status: 0, service_id: 10, data_id: 45054, data: \"{u'test': u'test'}\"", "module": "__init__", - "msecs": 926.0749816894531, + "msecs": 138.0789279937744, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 8818.47596168518, - "thread": 140487175731008, + "relativeCreated": 8831.817865371704, + "thread": 140534768363328, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-01-29 07:23:15,926", - "created": 1580278995.926569, + "asctime": "2020-12-21 22:32:58,138", + "created": 1608586378.138627, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -4652,20 +4712,20 @@ "lineno": 55, "message": "Send data: (79): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 7d 63 ee c4 24", "module": "test_helpers", - "msecs": 926.5689849853516, + "msecs": 138.6270523071289, "msg": "Send data: (79): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 7d 63 ee c4 24", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 8818.96996498108, - "thread": 140487175731008, + "relativeCreated": 8832.365989685059, + "thread": 140534768363328, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-01-29 07:23:16,077", - "created": 1580278996.077598, + "asctime": "2020-12-21 22:32:58,289", + "created": 1608586378.289846, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -4675,14 +4735,14 @@ "lineno": 66, "message": "Receive data (79): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 7d 63 ee c4 24", "module": "test_helpers", - "msecs": 77.59809494018555, + "msecs": 289.84594345092773, "msg": "Receive data (79): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 7d 63 ee c4 24", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 8969.999074935913, - "thread": 140487116760832, + "relativeCreated": 8983.584880828857, + "thread": 140534747334400, "threadName": "Thread-24" }, { @@ -4693,50 +4753,50 @@ "45054", "{u'test': u'test'}" ], - "asctime": "2020-01-29 07:23:16,077", - "created": 1580278996.077977, + "asctime": "2020-12-21 22:32:58,290", + "created": 1608586378.290335, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 247, + "lineno": 265, "message": "SJP: RX <- status: 0, service_id: 10, data_id: 45054, data: \"{u'test': u'test'}\"", "module": "__init__", - "msecs": 77.97694206237793, + "msecs": 290.33493995666504, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 8970.377922058105, - "thread": 140487116760832, + "relativeCreated": 8984.073877334595, + "thread": 140534747334400, "threadName": "Thread-24" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:16,078", - "created": 1580278996.078229, + "asctime": "2020-12-21 22:32:58,290", + "created": 1608586378.290654, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "WARNING", "levelno": 30, - "lineno": 259, + "lineno": 277, "message": "SJP: Received message with no registered callback. Sending negative response.", "module": "__init__", - "msecs": 78.22895050048828, + "msecs": 290.65394401550293, "msg": "%s Received message with no registered callback. Sending negative response.", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 8970.629930496216, - "thread": 140487116760832, + "relativeCreated": 8984.392881393433, + "thread": 140534747334400, "threadName": "Thread-24" }, { @@ -4747,31 +4807,31 @@ 45054, "None" ], - "asctime": "2020-01-29 07:23:16,078", - "created": 1580278996.078439, + "asctime": "2020-12-21 22:32:58,290", + "created": 1608586378.290912, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 334, + "lineno": 352, "message": "SJP: TX -> status: 1, service_id: 11, data_id: 45054, data: \"None\"", "module": "__init__", - "msecs": 78.43899726867676, + "msecs": 290.9119129180908, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 8970.839977264404, - "thread": 140487116760832, + "relativeCreated": 8984.65085029602, + "thread": 140534747334400, "threadName": "Thread-24" }, { "args": [], - "asctime": "2020-01-29 07:23:16,078", - "created": 1580278996.078876, + "asctime": "2020-12-21 22:32:58,291", + "created": 1608586378.291406, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -4781,20 +4841,20 @@ "lineno": 55, "message": "Send data: (67): 7b 22 73 74 61 74 75 73 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 7d b1 70 10 64", "module": "test_helpers", - "msecs": 78.87601852416992, + "msecs": 291.40591621398926, "msg": "Send data: (67): 7b 22 73 74 61 74 75 73 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 7d b1 70 10 64", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 8971.276998519897, - "thread": 140487116760832, + "relativeCreated": 8985.144853591919, + "thread": 140534747334400, "threadName": "Thread-24" }, { "args": [], - "asctime": "2020-01-29 07:23:16,229", - "created": 1580278996.229851, + "asctime": "2020-12-21 22:32:58,442", + "created": 1608586378.442577, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -4804,14 +4864,14 @@ "lineno": 66, "message": "Receive data (67): 7b 22 73 74 61 74 75 73 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 7d b1 70 10 64", "module": "test_helpers", - "msecs": 229.85100746154785, + "msecs": 442.5768852233887, "msg": "Receive data (67): 7b 22 73 74 61 74 75 73 22 3a 20 31 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 7d b1 70 10 64", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 9122.251987457275, - "thread": 140487038072576, + "relativeCreated": 9136.315822601318, + "thread": 140534738941696, "threadName": "Thread-25" }, { @@ -4822,25 +4882,25 @@ "45054", "None" ], - "asctime": "2020-01-29 07:23:16,230", - "created": 1580278996.23022, + "asctime": "2020-12-21 22:32:58,443", + "created": 1608586378.44304, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 247, + "lineno": 265, "message": "SJP: RX <- status: 1, service_id: 11, data_id: 45054, data: \"None\"", "module": "__init__", - "msecs": 230.22007942199707, + "msecs": 443.0398941040039, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 9122.621059417725, - "thread": 140487038072576, + "relativeCreated": 9136.778831481934, + "thread": 140534738941696, "threadName": "Thread-25" }, { @@ -4848,71 +4908,71 @@ "SJP:", "Request has no callback. Data buffered." ], - "asctime": "2020-01-29 07:23:16,230", - "created": 1580278996.23048, + "asctime": "2020-12-21 22:32:58,443", + "created": 1608586378.443363, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "WARNING", "levelno": 30, - "lineno": 274, + "lineno": 292, "message": "SJP: Received message has a peculiar status: Request has no callback. Data buffered.", "module": "__init__", - "msecs": 230.47995567321777, + "msecs": 443.3629512786865, "msg": "%s Received message has a peculiar status: %s", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 9122.880935668945, - "thread": 140487038072576, + "relativeCreated": 9137.101888656616, + "thread": 140534738941696, "threadName": "Thread-25" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:16,230", - "created": 1580278996.230682, + "asctime": "2020-12-21 22:32:58,443", + "created": 1608586378.443576, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 292, + "lineno": 310, "message": "SJP: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 230.6818962097168, + "msecs": 443.5760974884033, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 9123.082876205444, - "thread": 140487038072576, + "relativeCreated": 9137.315034866333, + "thread": 140534738941696, "threadName": "Thread-25" } ], - "msecs": 428.3020496368408, + "msecs": 640.8190727233887, "msg": "Send data, but no callback registered (pure_json_protocol).", "name": "__tLogger__", "pathname": "src/tests/test_handling_errors.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 9320.703029632568, - "thread": 140487175731008, + "relativeCreated": 9334.558010101318, + "thread": 140534768363328, "threadName": "MainThread", - "time_consumption": 0.19762015342712402 + "time_consumption": 0.19724297523498535 }, { "args": [ "True", "" ], - "asctime": "2020-01-29 07:23:16,429", - "created": 1580278996.42907, + "asctime": "2020-12-21 22:32:58,641", + "created": 1608586378.641639, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -4929,8 +4989,8 @@ "True", "" ], - "asctime": "2020-01-29 07:23:16,428", - "created": 1580278996.428704, + "asctime": "2020-12-21 22:32:58,641", + "created": 1608586378.641295, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -4940,14 +5000,14 @@ "lineno": 22, "message": "Result (Return value of send method): True ()", "module": "test", - "msecs": 428.70402336120605, + "msecs": 641.2949562072754, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 9321.105003356934, - "thread": 140487175731008, + "relativeCreated": 9335.033893585205, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -4956,8 +5016,8 @@ "True", "" ], - "asctime": "2020-01-29 07:23:16,428", - "created": 1580278996.428895, + "asctime": "2020-12-21 22:32:58,641", + "created": 1608586378.641471, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -4967,35 +5027,35 @@ "lineno": 26, "message": "Expectation (Return value of send method): result = True ()", "module": "test", - "msecs": 428.8949966430664, + "msecs": 641.4709091186523, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 9321.295976638794, - "thread": 140487175731008, + "relativeCreated": 9335.209846496582, + "thread": 140534768363328, "threadName": "MainThread" } ], - "msecs": 429.06999588012695, + "msecs": 641.638994216919, "msg": "Return value of send method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 9321.470975875854, - "thread": 140487175731008, + "relativeCreated": 9335.377931594849, + "thread": 140534768363328, "threadName": "MainThread", - "time_consumption": 0.00017499923706054688 + "time_consumption": 0.00016808509826660156 }, { "args": [ "1", "" ], - "asctime": "2020-01-29 07:23:16,429", - "created": 1580278996.429656, + "asctime": "2020-12-21 22:32:58,642", + "created": 1608586378.642172, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -5012,8 +5072,8 @@ "1", "" ], - "asctime": "2020-01-29 07:23:16,429", - "created": 1580278996.429355, + "asctime": "2020-12-21 22:32:58,641", + "created": 1608586378.641889, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -5023,14 +5083,14 @@ "lineno": 22, "message": "Result (Response Status (Request has no callback. Data buffered.) transfered via pure_json_protocol): 1 ()", "module": "test", - "msecs": 429.3549060821533, + "msecs": 641.8890953063965, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 9321.75588607788, - "thread": 140487175731008, + "relativeCreated": 9335.628032684326, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -5039,8 +5099,8 @@ "1", "" ], - "asctime": "2020-01-29 07:23:16,429", - "created": 1580278996.429509, + "asctime": "2020-12-21 22:32:58,642", + "created": 1608586378.642032, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -5050,35 +5110,35 @@ "lineno": 26, "message": "Expectation (Response Status (Request has no callback. Data buffered.) transfered via pure_json_protocol): result = 1 ()", "module": "test", - "msecs": 429.50892448425293, + "msecs": 642.0319080352783, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 9321.90990447998, - "thread": 140487175731008, + "relativeCreated": 9335.770845413208, + "thread": 140534768363328, "threadName": "MainThread" } ], - "msecs": 429.6560287475586, + "msecs": 642.17209815979, "msg": "Response Status (Request has no callback. Data buffered.) transfered via pure_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 9322.057008743286, - "thread": 140487175731008, + "relativeCreated": 9335.91103553772, + "thread": 140534768363328, "threadName": "MainThread", - "time_consumption": 0.00014710426330566406 + "time_consumption": 0.00014019012451171875 }, { "args": [ "None", "" ], - "asctime": "2020-01-29 07:23:16,430", - "created": 1580278996.430179, + "asctime": "2020-12-21 22:32:58,642", + "created": 1608586378.642671, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -5095,8 +5155,8 @@ "None", "" ], - "asctime": "2020-01-29 07:23:16,429", - "created": 1580278996.429893, + "asctime": "2020-12-21 22:32:58,642", + "created": 1608586378.6424, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -5106,14 +5166,14 @@ "lineno": 22, "message": "Result (Response Data (no data) transfered via pure_json_protocol): None ()", "module": "test", - "msecs": 429.89301681518555, + "msecs": 642.4000263214111, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 9322.293996810913, - "thread": 140487175731008, + "relativeCreated": 9336.13896369934, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -5122,8 +5182,8 @@ "None", "" ], - "asctime": "2020-01-29 07:23:16,430", - "created": 1580278996.430036, + "asctime": "2020-12-21 22:32:58,642", + "created": 1608586378.642536, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -5133,35 +5193,35 @@ "lineno": 26, "message": "Expectation (Response Data (no data) transfered via pure_json_protocol): result = None ()", "module": "test", - "msecs": 430.0360679626465, + "msecs": 642.535924911499, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 9322.437047958374, - "thread": 140487175731008, + "relativeCreated": 9336.274862289429, + "thread": 140534768363328, "threadName": "MainThread" } ], - "msecs": 430.1791191101074, + "msecs": 642.6711082458496, "msg": "Response Data (no data) transfered via pure_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 9322.580099105835, - "thread": 140487175731008, + "relativeCreated": 9336.41004562378, + "thread": 140534768363328, "threadName": "MainThread", - "time_consumption": 0.0001430511474609375 + "time_consumption": 0.00013518333435058594 }, { "args": [ "None", "" ], - "asctime": "2020-01-29 07:23:16,531", - "created": 1580278996.531281, + "asctime": "2020-12-21 22:32:58,743", + "created": 1608586378.743909, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -5179,25 +5239,25 @@ "11", "45054" ], - "asctime": "2020-01-29 07:23:16,530", - "created": 1580278996.530658, + "asctime": "2020-12-21 22:32:58,743", + "created": 1608586378.743146, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 309, + "lineno": 327, "message": "SJP: TIMEOUT (0.1s): Requested data (service_id: 11; data_id: 45054) not in buffer.", "module": "__init__", - "msecs": 530.6580066680908, + "msecs": 743.1459426879883, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 9423.058986663818, - "thread": 140487175731008, + "relativeCreated": 9436.884880065918, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -5206,8 +5266,8 @@ "None", "" ], - "asctime": "2020-01-29 07:23:16,530", - "created": 1580278996.530921, + "asctime": "2020-12-21 22:32:58,743", + "created": 1608586378.743499, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -5217,14 +5277,14 @@ "lineno": 22, "message": "Result (Return Value (request instance) for pure_json_protocol.receive with data data_id 0xaffe): None ()", "module": "test", - "msecs": 530.9209823608398, + "msecs": 743.4990406036377, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 9423.321962356567, - "thread": 140487175731008, + "relativeCreated": 9437.237977981567, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -5233,8 +5293,8 @@ "None", "" ], - "asctime": "2020-01-29 07:23:16,531", - "created": 1580278996.531115, + "asctime": "2020-12-21 22:32:58,743", + "created": 1608586378.743693, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -5244,35 +5304,35 @@ "lineno": 26, "message": "Expectation (Return Value (request instance) for pure_json_protocol.receive with data data_id 0xaffe): result = None ()", "module": "test", - "msecs": 531.1150550842285, + "msecs": 743.6931133270264, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 9423.516035079956, - "thread": 140487175731008, + "relativeCreated": 9437.432050704956, + "thread": 140534768363328, "threadName": "MainThread" } ], - "msecs": 531.2809944152832, + "msecs": 743.9088821411133, "msg": "Return Value (request instance) for pure_json_protocol.receive with data data_id 0xaffe is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 9423.68197441101, - "thread": 140487175731008, + "relativeCreated": 9437.647819519043, + "thread": 140534768363328, "threadName": "MainThread", - "time_consumption": 0.0001659393310546875 + "time_consumption": 0.00021576881408691406 }, { "args": [ "None", "" ], - "asctime": "2020-01-29 07:23:16,632", - "created": 1580278996.632363, + "asctime": "2020-12-21 22:32:58,845", + "created": 1608586378.845366, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -5290,25 +5350,25 @@ "10", "45054" ], - "asctime": "2020-01-29 07:23:16,631", - "created": 1580278996.631748, + "asctime": "2020-12-21 22:32:58,844", + "created": 1608586378.844539, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 309, + "lineno": 327, "message": "SJP: TIMEOUT (0.1s): Requested data (service_id: 10; data_id: 45054) not in buffer.", "module": "__init__", - "msecs": 631.7479610443115, + "msecs": 844.5389270782471, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 9524.148941040039, - "thread": 140487175731008, + "relativeCreated": 9538.277864456177, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -5317,8 +5377,8 @@ "None", "" ], - "asctime": "2020-01-29 07:23:16,632", - "created": 1580278996.632012, + "asctime": "2020-12-21 22:32:58,844", + "created": 1608586378.84497, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -5328,14 +5388,14 @@ "lineno": 22, "message": "Result (Return Value (response instance) for pure_json_protocol.receive with data data_id 0xaffe): None ()", "module": "test", - "msecs": 632.011890411377, + "msecs": 844.9699878692627, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 9524.412870407104, - "thread": 140487175731008, + "relativeCreated": 9538.708925247192, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -5344,8 +5404,8 @@ "None", "" ], - "asctime": "2020-01-29 07:23:16,632", - "created": 1580278996.632194, + "asctime": "2020-12-21 22:32:58,845", + "created": 1608586378.845178, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -5355,39 +5415,39 @@ "lineno": 26, "message": "Expectation (Return Value (response instance) for pure_json_protocol.receive with data data_id 0xaffe): result = None ()", "module": "test", - "msecs": 632.1940422058105, + "msecs": 845.1778888702393, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 9524.595022201538, - "thread": 140487175731008, + "relativeCreated": 9538.916826248169, + "thread": 140534768363328, "threadName": "MainThread" } ], - "msecs": 632.3630809783936, + "msecs": 845.3660011291504, "msg": "Return Value (response instance) for pure_json_protocol.receive with data data_id 0xaffe is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 9524.764060974121, - "thread": 140487175731008, + "relativeCreated": 9539.10493850708, + "thread": 140534768363328, "threadName": "MainThread", - "time_consumption": 0.0001690387725830078 + "time_consumption": 0.0001881122589111328 } ], - "thread": 140487175731008, + "thread": 140534768363328, "threadName": "MainThread", - "time_consumption": 0.7077491283416748, - "time_finished": "2020-01-29 07:23:16,632", - "time_start": "2020-01-29 07:23:15,924" + "time_consumption": 0.7088160514831543, + "time_finished": "2020-12-21 22:32:58,845", + "time_start": "2020-12-21 22:32:58,136" }, "socket_protocol.pure_json_protocol: Register a Callback which is already defined.": { "args": null, - "asctime": "2020-01-29 07:23:18,045", - "created": 1580278998.045155, + "asctime": "2020-12-21 22:33:00,255", + "created": 1608586380.255399, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -5398,18 +5458,18 @@ "message": "socket_protocol.pure_json_protocol: Register a Callback which is already defined.", "module": "__init__", "moduleLogger": [], - "msecs": 45.15504837036133, + "msecs": 255.39898872375488, "msg": "socket_protocol.pure_json_protocol: Register a Callback which is already defined.", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 10937.556028366089, + "relativeCreated": 10949.137926101685, "testcaseLogger": [ { "args": [], - "asctime": "2020-01-29 07:23:18,046", - "created": 1580278998.0462, + "asctime": "2020-12-21 22:33:00,255", + "created": 1608586380.255975, "exc_info": null, "exc_text": null, "filename": "test_handling_errors.py", @@ -5424,71 +5484,71 @@ "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:18,045", - "created": 1580278998.045529, + "asctime": "2020-12-21 22:33:00,255", + "created": 1608586380.255582, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 295, + "lineno": 313, "message": "SJP: Cleaning up receive-buffer", "module": "__init__", - "msecs": 45.52888870239258, + "msecs": 255.58209419250488, "msg": "%s Cleaning up receive-buffer", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 10937.92986869812, - "thread": 140487175731008, + "relativeCreated": 10949.321031570435, + "thread": 140534768363328, "threadName": "MainThread" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:18,045", - "created": 1580278998.045918, + "asctime": "2020-12-21 22:33:00,255", + "created": 1608586380.255808, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 199, + "lineno": 217, "message": "SJP: Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "module": "__init__", - "msecs": 45.91798782348633, + "msecs": 255.80811500549316, "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 10938.318967819214, - "thread": 140487175731008, + "relativeCreated": 10949.547052383423, + "thread": 140534768363328, "threadName": "MainThread" } ], - "msecs": 46.20003700256348, + "msecs": 255.97500801086426, "msg": "Registering two callbacks which overlap for at least one message (pure_json_protocol).", "name": "__tLogger__", "pathname": "src/tests/test_handling_errors.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 10938.601016998291, - "thread": 140487175731008, + "relativeCreated": 10949.713945388794, + "thread": 140534768363328, "threadName": "MainThread", - "time_consumption": 0.00028204917907714844 + "time_consumption": 0.00016689300537109375 }, { "args": [ "True", "" ], - "asctime": "2020-01-29 07:23:18,046", - "created": 1580278998.046804, + "asctime": "2020-12-21 22:33:00,256", + "created": 1608586380.256322, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -5505,8 +5565,8 @@ "True", "" ], - "asctime": "2020-01-29 07:23:18,046", - "created": 1580278998.046472, + "asctime": "2020-12-21 22:33:00,256", + "created": 1608586380.256134, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -5516,14 +5576,14 @@ "lineno": 22, "message": "Result (Exception (RegistrationError) detection variable): True ()", "module": "test", - "msecs": 46.47207260131836, + "msecs": 256.134033203125, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 10938.873052597046, - "thread": 140487175731008, + "relativeCreated": 10949.872970581055, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -5532,8 +5592,8 @@ "True", "" ], - "asctime": "2020-01-29 07:23:18,046", - "created": 1580278998.046636, + "asctime": "2020-12-21 22:33:00,256", + "created": 1608586380.25623, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -5543,39 +5603,39 @@ "lineno": 26, "message": "Expectation (Exception (RegistrationError) detection variable): result = True ()", "module": "test", - "msecs": 46.636104583740234, + "msecs": 256.23011589050293, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 10939.037084579468, - "thread": 140487175731008, + "relativeCreated": 10949.969053268433, + "thread": 140534768363328, "threadName": "MainThread" } ], - "msecs": 46.803951263427734, + "msecs": 256.32190704345703, "msg": "Exception (RegistrationError) detection variable is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 10939.204931259155, - "thread": 140487175731008, + "relativeCreated": 10950.060844421387, + "thread": 140534768363328, "threadName": "MainThread", - "time_consumption": 0.0001678466796875 + "time_consumption": 9.179115295410156e-05 } ], - "thread": 140487175731008, + "thread": 140534768363328, "threadName": "MainThread", - "time_consumption": 0.0016489028930664062, - "time_finished": "2020-01-29 07:23:18,046", - "time_start": "2020-01-29 07:23:18,045" + "time_consumption": 0.0009229183197021484, + "time_finished": "2020-12-21 22:33:00,256", + "time_start": "2020-12-21 22:33:00,255" }, "socket_protocol.pure_json_protocol: Register a second Callback with the same service_id.": { "args": null, - "asctime": "2020-01-29 07:23:12,096", - "created": 1580278992.096374, + "asctime": "2020-12-21 22:32:54,298", + "created": 1608586374.298348, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -5586,18 +5646,18 @@ "message": "socket_protocol.pure_json_protocol: Register a second Callback with the same service_id.", "module": "__init__", "moduleLogger": [], - "msecs": 96.3740348815918, + "msecs": 298.34794998168945, "msg": "socket_protocol.pure_json_protocol: Register a second Callback with the same service_id.", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 4988.775014877319, + "relativeCreated": 4992.086887359619, "testcaseLogger": [ { "args": [], - "asctime": "2020-01-29 07:23:12,598", - "created": 1580278992.598197, + "asctime": "2020-12-21 22:32:54,802", + "created": 1608586374.802384, "exc_info": null, "exc_text": null, "filename": "test_normal_operation.py", @@ -5612,100 +5672,100 @@ "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:12,096", - "created": 1580278992.096484, + "asctime": "2020-12-21 22:32:54,298", + "created": 1608586374.298689, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 295, + "lineno": 313, "message": "SJP: Cleaning up receive-buffer", "module": "__init__", - "msecs": 96.48394584655762, + "msecs": 298.6888885498047, "msg": "%s Cleaning up receive-buffer", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 4988.884925842285, - "thread": 140487175731008, + "relativeCreated": 4992.427825927734, + "thread": 140534768363328, "threadName": "MainThread" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:12,096", - "created": 1580278992.09661, + "asctime": "2020-12-21 22:32:54,299", + "created": 1608586374.299083, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 199, + "lineno": 217, "message": "SJP: Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "module": "__init__", - "msecs": 96.61006927490234, + "msecs": 299.08299446105957, "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 4989.01104927063, - "thread": 140487175731008, + "relativeCreated": 4992.821931838989, + "thread": 140534768363328, "threadName": "MainThread" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:12,096", - "created": 1580278992.096679, + "asctime": "2020-12-21 22:32:54,299", + "created": 1608586374.299315, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 295, + "lineno": 313, "message": "SJP: Cleaning up receive-buffer", "module": "__init__", - "msecs": 96.6789722442627, + "msecs": 299.3149757385254, "msg": "%s Cleaning up receive-buffer", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 4989.07995223999, - "thread": 140487175731008, + "relativeCreated": 4993.053913116455, + "thread": 140534768363328, "threadName": "MainThread" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:12,096", - "created": 1580278992.096797, + "asctime": "2020-12-21 22:32:54,299", + "created": 1608586374.299633, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 199, + "lineno": 217, "message": "SJP: Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "module": "__init__", - "msecs": 96.79698944091797, + "msecs": 299.6330261230469, "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 4989.1979694366455, - "thread": 140487175731008, + "relativeCreated": 4993.371963500977, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -5716,31 +5776,31 @@ 45054, "{u'test': u'test'}" ], - "asctime": "2020-01-29 07:23:12,096", - "created": 1580278992.096927, + "asctime": "2020-12-21 22:32:54,299", + "created": 1608586374.299925, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 334, + "lineno": 352, "message": "SJP: TX -> status: 0, service_id: 10, data_id: 45054, data: \"{u'test': u'test'}\"", "module": "__init__", - "msecs": 96.92692756652832, + "msecs": 299.9250888824463, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 4989.327907562256, - "thread": 140487175731008, + "relativeCreated": 4993.664026260376, + "thread": 140534768363328, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-01-29 07:23:12,097", - "created": 1580278992.097088, + "asctime": "2020-12-21 22:32:54,300", + "created": 1608586374.300477, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -5750,20 +5810,20 @@ "lineno": 55, "message": "Send data: (79): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 7d 63 ee c4 24", "module": "test_helpers", - "msecs": 97.08809852600098, + "msecs": 300.4770278930664, "msg": "Send data: (79): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 7d 63 ee c4 24", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 4989.4890785217285, - "thread": 140487175731008, + "relativeCreated": 4994.215965270996, + "thread": 140534768363328, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-01-29 07:23:12,247", - "created": 1580278992.247548, + "asctime": "2020-12-21 22:32:54,451", + "created": 1608586374.451793, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -5773,14 +5833,14 @@ "lineno": 66, "message": "Receive data (79): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 7d 63 ee c4 24", "module": "test_helpers", - "msecs": 247.54810333251953, + "msecs": 451.79295539855957, "msg": "Receive data (79): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 7d 63 ee c4 24", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 5139.949083328247, - "thread": 140487038072576, + "relativeCreated": 5145.531892776489, + "thread": 140534738941696, "threadName": "Thread-17" }, { @@ -5791,25 +5851,25 @@ "45054", "{u'test': u'test'}" ], - "asctime": "2020-01-29 07:23:12,247", - "created": 1580278992.247742, + "asctime": "2020-12-21 22:32:54,452", + "created": 1608586374.452346, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 247, + "lineno": 265, "message": "SJP: RX <- status: 0, service_id: 10, data_id: 45054, data: \"{u'test': u'test'}\"", "module": "__init__", - "msecs": 247.7419376373291, + "msecs": 452.3460865020752, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 5140.142917633057, - "thread": 140487038072576, + "relativeCreated": 5146.085023880005, + "thread": 140534738941696, "threadName": "Thread-17" }, { @@ -5817,25 +5877,25 @@ "SJP:", "response_data_method_2" ], - "asctime": "2020-01-29 07:23:12,247", - "created": 1580278992.247839, + "asctime": "2020-12-21 22:32:54,452", + "created": 1608586374.452586, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 264, + "lineno": 282, "message": "SJP: Executing callback response_data_method_2 to process received data", "module": "__init__", - "msecs": 247.83897399902344, + "msecs": 452.58593559265137, "msg": "%s Executing callback %s to process received data", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 5140.239953994751, - "thread": 140487038072576, + "relativeCreated": 5146.324872970581, + "thread": 140534738941696, "threadName": "Thread-17" }, { @@ -5846,31 +5906,31 @@ 45054, "[1, 3, u's']" ], - "asctime": "2020-01-29 07:23:12,247", - "created": 1580278992.247919, + "asctime": "2020-12-21 22:32:54,452", + "created": 1608586374.452831, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 334, + "lineno": 352, "message": "SJP: TX -> status: 5, service_id: 11, data_id: 45054, data: \"[1, 3, u's']\"", "module": "__init__", - "msecs": 247.91908264160156, + "msecs": 452.8310298919678, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 5140.320062637329, - "thread": 140487038072576, + "relativeCreated": 5146.5699672698975, + "thread": 140534738941696, "threadName": "Thread-17" }, { "args": [], - "asctime": "2020-01-29 07:23:12,248", - "created": 1580278992.24808, + "asctime": "2020-12-21 22:32:54,453", + "created": 1608586374.45334, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -5880,20 +5940,20 @@ "lineno": 55, "message": "Send data: (74): 7b 22 73 74 61 74 75 73 22 3a 20 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 5b 31 2c 20 33 2c 20 22 73 22 5d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 7d 85 0b b7 34", "module": "test_helpers", - "msecs": 248.08001518249512, + "msecs": 453.3400535583496, "msg": "Send data: (74): 7b 22 73 74 61 74 75 73 22 3a 20 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 5b 31 2c 20 33 2c 20 22 73 22 5d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 7d 85 0b b7 34", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 5140.480995178223, - "thread": 140487038072576, + "relativeCreated": 5147.078990936279, + "thread": 140534738941696, "threadName": "Thread-17" }, { "args": [], - "asctime": "2020-01-29 07:23:12,398", - "created": 1580278992.398515, + "asctime": "2020-12-21 22:32:54,607", + "created": 1608586374.607388, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -5903,14 +5963,14 @@ "lineno": 66, "message": "Receive data (74): 7b 22 73 74 61 74 75 73 22 3a 20 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 5b 31 2c 20 33 2c 20 22 73 22 5d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 7d 85 0b b7 34", "module": "test_helpers", - "msecs": 398.514986038208, + "msecs": 607.3880195617676, "msg": "Receive data (74): 7b 22 73 74 61 74 75 73 22 3a 20 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 5b 31 2c 20 33 2c 20 22 73 22 5d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 7d 85 0b b7 34", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 5290.915966033936, - "thread": 140487116760832, + "relativeCreated": 5301.126956939697, + "thread": 140534747334400, "threadName": "Thread-18" }, { @@ -5921,25 +5981,25 @@ "45054", "[1, 3, u's']" ], - "asctime": "2020-01-29 07:23:12,398", - "created": 1580278992.398684, + "asctime": "2020-12-21 22:32:54,607", + "created": 1608586374.607714, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 247, + "lineno": 265, "message": "SJP: RX <- status: 5, service_id: 11, data_id: 45054, data: \"[1, 3, u's']\"", "module": "__init__", - "msecs": 398.684024810791, + "msecs": 607.7139377593994, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 5291.085004806519, - "thread": 140487116760832, + "relativeCreated": 5301.452875137329, + "thread": 140534747334400, "threadName": "Thread-18" }, { @@ -5947,71 +6007,71 @@ "SJP:", "Operation not permitted" ], - "asctime": "2020-01-29 07:23:12,398", - "created": 1580278992.398767, + "asctime": "2020-12-21 22:32:54,607", + "created": 1608586374.607836, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "WARNING", "levelno": 30, - "lineno": 274, + "lineno": 292, "message": "SJP: Received message has a peculiar status: Operation not permitted", "module": "__init__", - "msecs": 398.76699447631836, + "msecs": 607.8360080718994, "msg": "%s Received message has a peculiar status: %s", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 5291.167974472046, - "thread": 140487116760832, + "relativeCreated": 5301.574945449829, + "thread": 140534747334400, "threadName": "Thread-18" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:12,398", - "created": 1580278992.398826, + "asctime": "2020-12-21 22:32:54,607", + "created": 1608586374.607913, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 292, + "lineno": 310, "message": "SJP: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 398.82588386535645, + "msecs": 607.9130172729492, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 5291.226863861084, - "thread": 140487116760832, + "relativeCreated": 5301.651954650879, + "thread": 140534747334400, "threadName": "Thread-18" } ], - "msecs": 598.1969833374023, + "msecs": 802.3838996887207, "msg": "Send and received data by pure_json_protocol.", "name": "__tLogger__", "pathname": "src/tests/test_normal_operation.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 5490.59796333313, - "thread": 140487175731008, + "relativeCreated": 5496.12283706665, + "thread": 140534768363328, "threadName": "MainThread", - "time_consumption": 0.1993710994720459 + "time_consumption": 0.19447088241577148 }, { "args": [ "True", "" ], - "asctime": "2020-01-29 07:23:12,598", - "created": 1580278992.598706, + "asctime": "2020-12-21 22:32:54,803", + "created": 1608586374.803502, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6028,8 +6088,8 @@ "True", "" ], - "asctime": "2020-01-29 07:23:12,598", - "created": 1580278992.598493, + "asctime": "2020-12-21 22:32:54,803", + "created": 1608586374.803013, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6039,14 +6099,14 @@ "lineno": 22, "message": "Result (Return value of send method): True ()", "module": "test", - "msecs": 598.4930992126465, + "msecs": 803.0130863189697, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 5490.894079208374, - "thread": 140487175731008, + "relativeCreated": 5496.752023696899, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -6055,8 +6115,8 @@ "True", "" ], - "asctime": "2020-01-29 07:23:12,598", - "created": 1580278992.598606, + "asctime": "2020-12-21 22:32:54,803", + "created": 1608586374.803247, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6066,35 +6126,35 @@ "lineno": 26, "message": "Expectation (Return value of send method): result = True ()", "module": "test", - "msecs": 598.6061096191406, + "msecs": 803.2469749450684, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 5491.007089614868, - "thread": 140487175731008, + "relativeCreated": 5496.985912322998, + "thread": 140534768363328, "threadName": "MainThread" } ], - "msecs": 598.7060070037842, + "msecs": 803.502082824707, "msg": "Return value of send method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 5491.106986999512, - "thread": 140487175731008, + "relativeCreated": 5497.241020202637, + "thread": 140534768363328, "threadName": "MainThread", - "time_consumption": 9.989738464355469e-05 + "time_consumption": 0.0002551078796386719 }, { "args": [ "0", "" ], - "asctime": "2020-01-29 07:23:12,599", - "created": 1580278992.59903, + "asctime": "2020-12-21 22:32:54,803", + "created": 1608586374.803914, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6111,8 +6171,8 @@ "0", "" ], - "asctime": "2020-01-29 07:23:12,598", - "created": 1580278992.598856, + "asctime": "2020-12-21 22:32:54,803", + "created": 1608586374.803707, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6122,14 +6182,14 @@ "lineno": 22, "message": "Result (Request Status (Okay) transfered via pure_json_protocol): 0 ()", "module": "test", - "msecs": 598.8559722900391, + "msecs": 803.7068843841553, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 5491.256952285767, - "thread": 140487175731008, + "relativeCreated": 5497.445821762085, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -6138,8 +6198,8 @@ "0", "" ], - "asctime": "2020-01-29 07:23:12,598", - "created": 1580278992.598945, + "asctime": "2020-12-21 22:32:54,803", + "created": 1608586374.803812, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6149,35 +6209,35 @@ "lineno": 26, "message": "Expectation (Request Status (Okay) transfered via pure_json_protocol): result = 0 ()", "module": "test", - "msecs": 598.944902420044, + "msecs": 803.8120269775391, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 5491.3458824157715, - "thread": 140487175731008, + "relativeCreated": 5497.550964355469, + "thread": 140534768363328, "threadName": "MainThread" } ], - "msecs": 599.0300178527832, + "msecs": 803.9140701293945, "msg": "Request Status (Okay) transfered via pure_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 5491.430997848511, - "thread": 140487175731008, + "relativeCreated": 5497.653007507324, + "thread": 140534768363328, "threadName": "MainThread", - "time_consumption": 8.511543273925781e-05 + "time_consumption": 0.00010204315185546875 }, { "args": [ "{u'test': u'test'}", "" ], - "asctime": "2020-01-29 07:23:12,599", - "created": 1580278992.599377, + "asctime": "2020-12-21 22:32:54,804", + "created": 1608586374.804308, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6194,8 +6254,8 @@ "{ u'test': u'test' }", "" ], - "asctime": "2020-01-29 07:23:12,599", - "created": 1580278992.599177, + "asctime": "2020-12-21 22:32:54,804", + "created": 1608586374.804079, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6205,14 +6265,14 @@ "lineno": 22, "message": "Result (Request Data transfered via pure_json_protocol): { u'test': u'test' } ()", "module": "test", - "msecs": 599.1768836975098, + "msecs": 804.0790557861328, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 5491.577863693237, - "thread": 140487175731008, + "relativeCreated": 5497.8179931640625, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -6221,8 +6281,8 @@ "{ u'test': u'test' }", "" ], - "asctime": "2020-01-29 07:23:12,599", - "created": 1580278992.599267, + "asctime": "2020-12-21 22:32:54,804", + "created": 1608586374.804182, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6232,35 +6292,35 @@ "lineno": 26, "message": "Expectation (Request Data transfered via pure_json_protocol): result = { u'test': u'test' } ()", "module": "test", - "msecs": 599.2670059204102, + "msecs": 804.1820526123047, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 5491.667985916138, - "thread": 140487175731008, + "relativeCreated": 5497.920989990234, + "thread": 140534768363328, "threadName": "MainThread" } ], - "msecs": 599.376916885376, + "msecs": 804.3079376220703, "msg": "Request Data transfered via pure_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 5491.7778968811035, - "thread": 140487175731008, + "relativeCreated": 5498.046875, + "thread": 140534768363328, "threadName": "MainThread", - "time_consumption": 0.00010991096496582031 + "time_consumption": 0.000125885009765625 }, { "args": [ "5", "" ], - "asctime": "2020-01-29 07:23:12,599", - "created": 1580278992.599696, + "asctime": "2020-12-21 22:32:54,804", + "created": 1608586374.80467, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6277,8 +6337,8 @@ "5", "" ], - "asctime": "2020-01-29 07:23:12,599", - "created": 1580278992.599522, + "asctime": "2020-12-21 22:32:54,804", + "created": 1608586374.804477, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6288,14 +6348,14 @@ "lineno": 22, "message": "Result (Response Status (Operation not permitted) transfered via pure_json_protocol): 5 ()", "module": "test", - "msecs": 599.5221138000488, + "msecs": 804.4769763946533, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 5491.923093795776, - "thread": 140487175731008, + "relativeCreated": 5498.215913772583, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -6304,8 +6364,8 @@ "5", "" ], - "asctime": "2020-01-29 07:23:12,599", - "created": 1580278992.599607, + "asctime": "2020-12-21 22:32:54,804", + "created": 1608586374.804573, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6315,35 +6375,35 @@ "lineno": 26, "message": "Expectation (Response Status (Operation not permitted) transfered via pure_json_protocol): result = 5 ()", "module": "test", - "msecs": 599.606990814209, + "msecs": 804.5730590820312, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 5492.0079708099365, - "thread": 140487175731008, + "relativeCreated": 5498.311996459961, + "thread": 140534768363328, "threadName": "MainThread" } ], - "msecs": 599.6959209442139, + "msecs": 804.6700954437256, "msg": "Response Status (Operation not permitted) transfered via pure_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 5492.096900939941, - "thread": 140487175731008, + "relativeCreated": 5498.409032821655, + "thread": 140534768363328, "threadName": "MainThread", - "time_consumption": 8.893013000488281e-05 + "time_consumption": 9.703636169433594e-05 }, { "args": [ "[1, 3, u's']", "" ], - "asctime": "2020-01-29 07:23:12,600", - "created": 1580278992.600053, + "asctime": "2020-12-21 22:32:54,805", + "created": 1608586374.805125, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6360,8 +6420,8 @@ "[ 1, 3, u's' ]", "" ], - "asctime": "2020-01-29 07:23:12,599", - "created": 1580278992.599847, + "asctime": "2020-12-21 22:32:54,804", + "created": 1608586374.804879, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6371,14 +6431,14 @@ "lineno": 22, "message": "Result (Response Data transfered via pure_json_protocol): [ 1, 3, u's' ] ()", "module": "test", - "msecs": 599.8470783233643, + "msecs": 804.8789501190186, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 5492.248058319092, - "thread": 140487175731008, + "relativeCreated": 5498.617887496948, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -6387,8 +6447,8 @@ "[ 1, 3, u's' ]", "" ], - "asctime": "2020-01-29 07:23:12,599", - "created": 1580278992.599937, + "asctime": "2020-12-21 22:32:54,804", + "created": 1608586374.804988, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6398,35 +6458,35 @@ "lineno": 26, "message": "Expectation (Response Data transfered via pure_json_protocol): result = [ 1, 3, u's' ] ()", "module": "test", - "msecs": 599.9369621276855, + "msecs": 804.987907409668, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 5492.337942123413, - "thread": 140487175731008, + "relativeCreated": 5498.726844787598, + "thread": 140534768363328, "threadName": "MainThread" } ], - "msecs": 600.053071975708, + "msecs": 805.1249980926514, "msg": "Response Data transfered via pure_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 5492.454051971436, - "thread": 140487175731008, + "relativeCreated": 5498.863935470581, + "thread": 140534768363328, "threadName": "MainThread", - "time_consumption": 0.00011610984802246094 + "time_consumption": 0.00013709068298339844 }, { "args": [ "None", "" ], - "asctime": "2020-01-29 07:23:12,701", - "created": 1580278992.701085, + "asctime": "2020-12-21 22:32:54,905", + "created": 1608586374.905841, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6444,25 +6504,25 @@ "11", "45054" ], - "asctime": "2020-01-29 07:23:12,700", - "created": 1580278992.700443, + "asctime": "2020-12-21 22:32:54,905", + "created": 1608586374.905478, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 309, + "lineno": 327, "message": "SJP: TIMEOUT (0.1s): Requested data (service_id: 11; data_id: 45054) not in buffer.", "module": "__init__", - "msecs": 700.4430294036865, + "msecs": 905.4780006408691, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 5592.844009399414, - "thread": 140487175731008, + "relativeCreated": 5599.216938018799, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -6471,8 +6531,8 @@ "None", "" ], - "asctime": "2020-01-29 07:23:12,700", - "created": 1580278992.70073, + "asctime": "2020-12-21 22:32:54,905", + "created": 1608586374.905662, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6482,14 +6542,14 @@ "lineno": 22, "message": "Result (Return Value (request instance) for pure_json_protocol.receive with data data_id 0xaffe): None ()", "module": "test", - "msecs": 700.7300853729248, + "msecs": 905.6620597839355, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 5593.131065368652, - "thread": 140487175731008, + "relativeCreated": 5599.400997161865, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -6498,8 +6558,8 @@ "None", "" ], - "asctime": "2020-01-29 07:23:12,700", - "created": 1580278992.700914, + "asctime": "2020-12-21 22:32:54,905", + "created": 1608586374.905753, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6509,35 +6569,35 @@ "lineno": 26, "message": "Expectation (Return Value (request instance) for pure_json_protocol.receive with data data_id 0xaffe): result = None ()", "module": "test", - "msecs": 700.9139060974121, + "msecs": 905.7528972625732, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 5593.31488609314, - "thread": 140487175731008, + "relativeCreated": 5599.491834640503, + "thread": 140534768363328, "threadName": "MainThread" } ], - "msecs": 701.085090637207, + "msecs": 905.8411121368408, "msg": "Return Value (request instance) for pure_json_protocol.receive with data data_id 0xaffe is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 5593.486070632935, - "thread": 140487175731008, + "relativeCreated": 5599.5800495147705, + "thread": 140534768363328, "threadName": "MainThread", - "time_consumption": 0.00017118453979492188 + "time_consumption": 8.821487426757812e-05 }, { "args": [ "None", "" ], - "asctime": "2020-01-29 07:23:12,802", - "created": 1580278992.80222, + "asctime": "2020-12-21 22:32:55,006", + "created": 1608586375.006916, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6555,25 +6615,25 @@ "10", "45054" ], - "asctime": "2020-01-29 07:23:12,801", - "created": 1580278992.801596, + "asctime": "2020-12-21 22:32:55,006", + "created": 1608586375.006312, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 309, + "lineno": 327, "message": "SJP: TIMEOUT (0.1s): Requested data (service_id: 10; data_id: 45054) not in buffer.", "module": "__init__", - "msecs": 801.59592628479, + "msecs": 6.311893463134766, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 5693.996906280518, - "thread": 140487175731008, + "relativeCreated": 5700.050830841064, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -6582,8 +6642,8 @@ "None", "" ], - "asctime": "2020-01-29 07:23:12,801", - "created": 1580278992.801861, + "asctime": "2020-12-21 22:32:55,006", + "created": 1608586375.006614, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6593,14 +6653,14 @@ "lineno": 22, "message": "Result (Return Value (response instance) for pure_json_protocol.receive with data data_id 0xaffe): None ()", "module": "test", - "msecs": 801.861047744751, + "msecs": 6.613969802856445, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 5694.2620277404785, - "thread": 140487175731008, + "relativeCreated": 5700.352907180786, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -6609,8 +6669,8 @@ "None", "" ], - "asctime": "2020-01-29 07:23:12,802", - "created": 1580278992.802056, + "asctime": "2020-12-21 22:32:55,006", + "created": 1608586375.006771, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -6620,39 +6680,39 @@ "lineno": 26, "message": "Expectation (Return Value (response instance) for pure_json_protocol.receive with data data_id 0xaffe): result = None ()", "module": "test", - "msecs": 802.056074142456, + "msecs": 6.771087646484375, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 5694.457054138184, - "thread": 140487175731008, + "relativeCreated": 5700.510025024414, + "thread": 140534768363328, "threadName": "MainThread" } ], - "msecs": 802.2201061248779, + "msecs": 6.916046142578125, "msg": "Return Value (response instance) for pure_json_protocol.receive with data data_id 0xaffe is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 5694.6210861206055, - "thread": 140487175731008, + "relativeCreated": 5700.654983520508, + "thread": 140534768363328, "threadName": "MainThread", - "time_consumption": 0.000164031982421875 + "time_consumption": 0.00014495849609375 } ], - "thread": 140487175731008, + "thread": 140534768363328, "threadName": "MainThread", - "time_consumption": 0.7058460712432861, - "time_finished": "2020-01-29 07:23:12,802", - "time_start": "2020-01-29 07:23:12,096" + "time_consumption": 0.7085680961608887, + "time_finished": "2020-12-21 22:32:55,006", + "time_start": "2020-12-21 22:32:54,298" }, "socket_protocol.pure_json_protocol: Send and receive check including authentification.": { "args": null, - "asctime": "2020-01-29 07:23:08,575", - "created": 1580278988.575057, + "asctime": "2020-12-21 22:32:50,753", + "created": 1608586370.753642, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -6663,18 +6723,18 @@ "message": "socket_protocol.pure_json_protocol: Send and receive check including authentification.", "module": "__init__", "moduleLogger": [], - "msecs": 575.0570297241211, + "msecs": 753.6420822143555, "msg": "socket_protocol.pure_json_protocol: Send and receive check including authentification.", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 1467.4580097198486, + "relativeCreated": 1447.3810195922852, "testcaseLogger": [ { "args": [], - "asctime": "2020-01-29 07:23:09,778", - "created": 1580278989.77856, + "asctime": "2020-12-21 22:32:51,961", + "created": 1608586371.961391, "exc_info": null, "exc_text": null, "filename": "test_normal_operation.py", @@ -6689,125 +6749,125 @@ "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:08,575", - "created": 1580278988.575159, + "asctime": "2020-12-21 22:32:50,753", + "created": 1608586370.75398, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 295, + "lineno": 313, "message": "SJP: Cleaning up receive-buffer", "module": "__init__", - "msecs": 575.1590728759766, + "msecs": 753.9799213409424, "msg": "%s Cleaning up receive-buffer", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 1467.560052871704, - "thread": 140487175731008, + "relativeCreated": 1447.718858718872, + "thread": 140534768363328, "threadName": "MainThread" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:08,575", - "created": 1580278988.575283, + "asctime": "2020-12-21 22:32:50,754", + "created": 1608586370.754369, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 199, + "lineno": 217, "message": "SJP: Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "module": "__init__", - "msecs": 575.2830505371094, + "msecs": 754.3690204620361, "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 1467.684030532837, - "thread": 140487175731008, + "relativeCreated": 1448.1079578399658, + "thread": 140534768363328, "threadName": "MainThread" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:08,575", - "created": 1580278988.575351, + "asctime": "2020-12-21 22:32:50,754", + "created": 1608586370.754591, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 295, + "lineno": 313, "message": "SJP: Cleaning up receive-buffer", "module": "__init__", - "msecs": 575.3509998321533, + "msecs": 754.5909881591797, "msg": "%s Cleaning up receive-buffer", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 1467.7519798278809, - "thread": 140487175731008, + "relativeCreated": 1448.3299255371094, + "thread": 140534768363328, "threadName": "MainThread" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:08,575", - "created": 1580278988.575447, + "asctime": "2020-12-21 22:32:50,754", + "created": 1608586370.754915, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 199, + "lineno": 217, "message": "SJP: Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "module": "__init__", - "msecs": 575.4470825195312, + "msecs": 754.9149990081787, "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 1467.8480625152588, - "thread": 140487175731008, + "relativeCreated": 1448.6539363861084, + "thread": 140534768363328, "threadName": "MainThread" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:08,575", - "created": 1580278988.575517, + "asctime": "2020-12-21 22:32:50,755", + "created": 1608586370.755153, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "authentificate", "levelname": "INFO", "levelno": 20, - "lineno": 378, + "lineno": 396, "message": "SJP: Requesting seed for authentification", "module": "__init__", - "msecs": 575.516939163208, + "msecs": 755.1529407501221, "msg": "%s Requesting seed for authentification", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 1467.9179191589355, - "thread": 140487175731008, + "relativeCreated": 1448.8918781280518, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -6818,31 +6878,31 @@ 0, "None" ], - "asctime": "2020-01-29 07:23:08,575", - "created": 1580278988.575575, + "asctime": "2020-12-21 22:32:50,755", + "created": 1608586370.755335, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 334, + "lineno": 352, "message": "SJP: TX -> status: 0, service_id: 1, data_id: 0, data: \"None\"", "module": "__init__", - "msecs": 575.5751132965088, + "msecs": 755.3350925445557, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 1467.9760932922363, - "thread": 140487175731008, + "relativeCreated": 1449.0740299224854, + "thread": 140534768363328, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-01-29 07:23:08,575", - "created": 1580278988.575713, + "asctime": "2020-12-21 22:32:50,755", + "created": 1608586370.755782, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -6852,20 +6912,20 @@ "lineno": 55, "message": "Send data: (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 2c 2d 2e 5d", "module": "test_helpers", - "msecs": 575.7129192352295, + "msecs": 755.781888961792, "msg": "Send data: (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 2c 2d 2e 5d", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 1468.113899230957, - "thread": 140487175731008, + "relativeCreated": 1449.5208263397217, + "thread": 140534768363328, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-01-29 07:23:08,726", - "created": 1580278988.726152, + "asctime": "2020-12-21 22:32:50,906", + "created": 1608586370.906828, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -6875,14 +6935,14 @@ "lineno": 66, "message": "Receive data (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 2c 2d 2e 5d", "module": "test_helpers", - "msecs": 726.1519432067871, + "msecs": 906.8279266357422, "msg": "Receive data (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 2c 2d 2e 5d", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 1618.5529232025146, - "thread": 140487116760832, + "relativeCreated": 1600.5668640136719, + "thread": 140534747334400, "threadName": "Thread-5" }, { @@ -6893,25 +6953,25 @@ "0", "None" ], - "asctime": "2020-01-29 07:23:08,726", - "created": 1580278988.726341, + "asctime": "2020-12-21 22:32:50,907", + "created": 1608586370.907002, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 247, + "lineno": 265, "message": "SJP: RX <- status: 0, service_id: 1, data_id: 0, data: \"None\"", "module": "__init__", - "msecs": 726.3410091400146, + "msecs": 907.0019721984863, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 1618.7419891357422, - "thread": 140487116760832, + "relativeCreated": 1600.740909576416, + "thread": 140534747334400, "threadName": "Thread-5" }, { @@ -6919,50 +6979,50 @@ "SJP:", "__authentificate_create_seed__" ], - "asctime": "2020-01-29 07:23:08,726", - "created": 1580278988.726439, + "asctime": "2020-12-21 22:32:50,907", + "created": 1608586370.907072, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 264, + "lineno": 282, "message": "SJP: Executing callback __authentificate_create_seed__ to process received data", "module": "__init__", - "msecs": 726.4389991760254, + "msecs": 907.0720672607422, "msg": "%s Executing callback %s to process received data", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 1618.839979171753, - "thread": 140487116760832, + "relativeCreated": 1600.8110046386719, + "thread": 140534747334400, "threadName": "Thread-5" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:08,726", - "created": 1580278988.726512, + "asctime": "2020-12-21 22:32:50,907", + "created": 1608586370.907125, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentificate_create_seed__", "levelname": "INFO", "levelno": 20, - "lineno": 404, + "lineno": 422, "message": "SJP: Got seed request, sending seed for authentification", "module": "__init__", - "msecs": 726.5119552612305, + "msecs": 907.1249961853027, "msg": "%s Got seed request, sending seed for authentification", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 1618.912935256958, - "thread": 140487116760832, + "relativeCreated": 1600.8639335632324, + "thread": 140534747334400, "threadName": "Thread-5" }, { @@ -6971,33 +7031,33 @@ 0, 2, 0, - "'0cdb40d33d9d2821ef18e2336f30f235cd5b936f666c1470c2b24278ec4fae97'" + "'0922d9bd6ece45f73011f7db3c5da2acbb6167bdb3e7b2dcecad4e98f15adf13'" ], - "asctime": "2020-01-29 07:23:08,726", - "created": 1580278988.7266, + "asctime": "2020-12-21 22:32:50,907", + "created": 1608586370.907196, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 334, - "message": "SJP: TX -> status: 0, service_id: 2, data_id: 0, data: \"'0cdb40d33d9d2821ef18e2336f30f235cd5b936f666c1470c2b24278ec4fae97'\"", + "lineno": 352, + "message": "SJP: TX -> status: 0, service_id: 2, data_id: 0, data: \"'0922d9bd6ece45f73011f7db3c5da2acbb6167bdb3e7b2dcecad4e98f15adf13'\"", "module": "__init__", - "msecs": 726.599931716919, + "msecs": 907.196044921875, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 1619.0009117126465, - "thread": 140487116760832, + "relativeCreated": 1600.9349822998047, + "thread": 140534747334400, "threadName": "Thread-5" }, { "args": [], - "asctime": "2020-01-29 07:23:08,726", - "created": 1580278988.726803, + "asctime": "2020-12-21 22:32:50,907", + "created": 1608586370.907368, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -7005,22 +7065,22 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 55, - "message": "Send data: (124): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 32 2c 20 22 64 61 74 61 22 3a 20 22 30 63 64 62 34 30 64 33 33 64 39 64 32 38 32 31 65 66 31 38 65 32 33 33 36 66 33 30 66 32 33 35 63 64 35 62 39 33 36 66 36 36 36 63 31 34 37 30 63 32 62 32 34 32 37 38 65 63 34 66 61 65 39 37 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 47 0c 2d 0c", + "message": "Send data: (124): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 32 2c 20 22 64 61 74 61 22 3a 20 22 30 39 32 32 64 39 62 64 36 65 63 65 34 35 66 37 33 30 31 31 66 37 64 62 33 63 35 64 61 32 61 63 62 62 36 31 36 37 62 64 62 33 65 37 62 32 64 63 65 63 61 64 34 65 39 38 66 31 35 61 64 66 31 33 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d df d1 ae 17", "module": "test_helpers", - "msecs": 726.8030643463135, - "msg": "Send data: (124): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 32 2c 20 22 64 61 74 61 22 3a 20 22 30 63 64 62 34 30 64 33 33 64 39 64 32 38 32 31 65 66 31 38 65 32 33 33 36 66 33 30 66 32 33 35 63 64 35 62 39 33 36 66 36 36 36 63 31 34 37 30 63 32 62 32 34 32 37 38 65 63 34 66 61 65 39 37 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 47 0c 2d 0c", + "msecs": 907.3679447174072, + "msg": "Send data: (124): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 32 2c 20 22 64 61 74 61 22 3a 20 22 30 39 32 32 64 39 62 64 36 65 63 65 34 35 66 37 33 30 31 31 66 37 64 62 33 63 35 64 61 32 61 63 62 62 36 31 36 37 62 64 62 33 65 37 62 32 64 63 65 63 61 64 34 65 39 38 66 31 35 61 64 66 31 33 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d df d1 ae 17", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 1619.204044342041, - "thread": 140487116760832, + "relativeCreated": 1601.106882095337, + "thread": 140534747334400, "threadName": "Thread-5" }, { "args": [], - "asctime": "2020-01-29 07:23:08,877", - "created": 1580278988.877313, + "asctime": "2020-12-21 22:32:51,058", + "created": 1608586371.058338, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -7028,16 +7088,16 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 66, - "message": "Receive data (124): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 32 2c 20 22 64 61 74 61 22 3a 20 22 30 63 64 62 34 30 64 33 33 64 39 64 32 38 32 31 65 66 31 38 65 32 33 33 36 66 33 30 66 32 33 35 63 64 35 62 39 33 36 66 36 36 36 63 31 34 37 30 63 32 62 32 34 32 37 38 65 63 34 66 61 65 39 37 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 47 0c 2d 0c", + "message": "Receive data (124): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 32 2c 20 22 64 61 74 61 22 3a 20 22 30 39 32 32 64 39 62 64 36 65 63 65 34 35 66 37 33 30 31 31 66 37 64 62 33 63 35 64 61 32 61 63 62 62 36 31 36 37 62 64 62 33 65 37 62 32 64 63 65 63 61 64 34 65 39 38 66 31 35 61 64 66 31 33 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d df d1 ae 17", "module": "test_helpers", - "msecs": 877.3128986358643, - "msg": "Receive data (124): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 32 2c 20 22 64 61 74 61 22 3a 20 22 30 63 64 62 34 30 64 33 33 64 39 64 32 38 32 31 65 66 31 38 65 32 33 33 36 66 33 30 66 32 33 35 63 64 35 62 39 33 36 66 36 36 36 63 31 34 37 30 63 32 62 32 34 32 37 38 65 63 34 66 61 65 39 37 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 47 0c 2d 0c", + "msecs": 58.33792686462402, + "msg": "Receive data (124): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 32 2c 20 22 64 61 74 61 22 3a 20 22 30 39 32 32 64 39 62 64 36 65 63 65 34 35 66 37 33 30 31 31 66 37 64 62 33 63 35 64 61 32 61 63 62 62 36 31 36 37 62 64 62 33 65 37 62 32 64 63 65 63 61 64 34 65 39 38 66 31 35 61 64 66 31 33 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d df d1 ae 17", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 1769.7138786315918, - "thread": 140487038072576, + "relativeCreated": 1752.0768642425537, + "thread": 140534738941696, "threadName": "Thread-6" }, { @@ -7046,27 +7106,27 @@ "0", "2", "0", - "u'0cdb40d33d9d2821ef18e2336f30f235cd5b936f666c1470c2b24278ec4fae97'" + "u'0922d9bd6ece45f73011f7db3c5da2acbb6167bdb3e7b2dcecad4e98f15adf13'" ], - "asctime": "2020-01-29 07:23:08,877", - "created": 1580278988.877491, + "asctime": "2020-12-21 22:32:51,058", + "created": 1608586371.058798, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 247, - "message": "SJP: RX <- status: 0, service_id: 2, data_id: 0, data: \"u'0cdb40d33d9d2821ef18e2336f30f235cd5b936f666c1470c2b24278ec4fae97'\"", + "lineno": 265, + "message": "SJP: RX <- status: 0, service_id: 2, data_id: 0, data: \"u'0922d9bd6ece45f73011f7db3c5da2acbb6167bdb3e7b2dcecad4e98f15adf13'\"", "module": "__init__", - "msecs": 877.4909973144531, + "msecs": 58.79807472229004, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 1769.8919773101807, - "thread": 140487038072576, + "relativeCreated": 1752.5370121002197, + "thread": 140534738941696, "threadName": "Thread-6" }, { @@ -7074,50 +7134,50 @@ "SJP:", "__authentificate_create_key__" ], - "asctime": "2020-01-29 07:23:08,877", - "created": 1580278988.877594, + "asctime": "2020-12-21 22:32:51,059", + "created": 1608586371.059039, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 264, + "lineno": 282, "message": "SJP: Executing callback __authentificate_create_key__ to process received data", "module": "__init__", - "msecs": 877.593994140625, + "msecs": 59.03911590576172, "msg": "%s Executing callback %s to process received data", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 1769.9949741363525, - "thread": 140487038072576, + "relativeCreated": 1752.7780532836914, + "thread": 140534738941696, "threadName": "Thread-6" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:08,877", - "created": 1580278988.87766, + "asctime": "2020-12-21 22:32:51,059", + "created": 1608586371.059212, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentificate_create_key__", "levelname": "INFO", "levelno": 20, - "lineno": 413, + "lineno": 431, "message": "SJP: Got seed, sending key for authentification", "module": "__init__", - "msecs": 877.6600360870361, + "msecs": 59.21196937561035, "msg": "%s Got seed, sending key for authentification", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 1770.0610160827637, - "thread": 140487038072576, + "relativeCreated": 1752.95090675354, + "thread": 140534738941696, "threadName": "Thread-6" }, { @@ -7126,33 +7186,33 @@ 0, 3, 0, - "'a3847d3f2d7f0791ce459dcf0b5ae84ba744080e51bd84d485c9732df2052b7d673eb45768ba85abbee42f37bb98b9e8c8f81560eb0d9d785ab5bf190b19c314'" + "'1464476a2e6a06841bd4922c84ba2f218850ac86c82ae81a81ab132a423137da9ba239acb47cc257740ada03035e65a71106341eeb6e7277c1c67846f5b63bf6'" ], - "asctime": "2020-01-29 07:23:08,877", - "created": 1580278988.877759, + "asctime": "2020-12-21 22:32:51,059", + "created": 1608586371.0595, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 334, - "message": "SJP: TX -> status: 0, service_id: 3, data_id: 0, data: \"'a3847d3f2d7f0791ce459dcf0b5ae84ba744080e51bd84d485c9732df2052b7d673eb45768ba85abbee42f37bb98b9e8c8f81560eb0d9d785ab5bf190b19c314'\"", + "lineno": 352, + "message": "SJP: TX -> status: 0, service_id: 3, data_id: 0, data: \"'1464476a2e6a06841bd4922c84ba2f218850ac86c82ae81a81ab132a423137da9ba239acb47cc257740ada03035e65a71106341eeb6e7277c1c67846f5b63bf6'\"", "module": "__init__", - "msecs": 877.7589797973633, + "msecs": 59.49997901916504, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 1770.1599597930908, - "thread": 140487038072576, + "relativeCreated": 1753.2389163970947, + "thread": 140534738941696, "threadName": "Thread-6" }, { "args": [], - "asctime": "2020-01-29 07:23:08,877", - "created": 1580278988.877999, + "asctime": "2020-12-21 22:32:51,060", + "created": 1608586371.060293, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -7160,22 +7220,22 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 55, - "message": "Send data: (188): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 33 2c 20 22 64 61 74 61 22 3a 20 22 61 33 38 34 37 64 33 66 32 64 37 66 30 37 39 31 63 65 34 35 39 64 63 66 30 62 35 61 65 38 34 62 61 37 34 34 30 38 30 65 35 31 62 64 38 34 64 34 38 35 63 39 37 33 32 64 66 32 30 35 32 62 37 64 36 37 33 65 62 34 35 37 36 38 62 61 38 35 61 62 62 65 65 34 32 66 33 37 62 62 39 38 62 39 65 38 63 38 66 38 31 35 36 30 65 62 30 64 39 64 37 38 35 61 62 35 62 66 31 39 30 62 31 39 63 33 31 34 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 83 91 71 cc", + "message": "Send data: (188): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 33 2c 20 22 64 61 74 61 22 3a 20 22 31 34 36 34 34 37 36 61 32 65 36 61 30 36 38 34 31 62 64 34 39 32 32 63 38 34 62 61 32 66 32 31 38 38 35 30 61 63 38 36 63 38 32 61 65 38 31 61 38 31 61 62 31 33 32 61 34 32 33 31 33 37 64 61 39 62 61 32 33 39 61 63 62 34 37 63 63 32 35 37 37 34 30 61 64 61 30 33 30 33 35 65 36 35 61 37 31 31 30 36 33 34 31 65 65 62 36 65 37 32 37 37 63 31 63 36 37 38 34 36 66 35 62 36 33 62 66 36 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d f6 4d 06 2a", "module": "test_helpers", - "msecs": 877.9990673065186, - "msg": "Send data: (188): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 33 2c 20 22 64 61 74 61 22 3a 20 22 61 33 38 34 37 64 33 66 32 64 37 66 30 37 39 31 63 65 34 35 39 64 63 66 30 62 35 61 65 38 34 62 61 37 34 34 30 38 30 65 35 31 62 64 38 34 64 34 38 35 63 39 37 33 32 64 66 32 30 35 32 62 37 64 36 37 33 65 62 34 35 37 36 38 62 61 38 35 61 62 62 65 65 34 32 66 33 37 62 62 39 38 62 39 65 38 63 38 66 38 31 35 36 30 65 62 30 64 39 64 37 38 35 61 62 35 62 66 31 39 30 62 31 39 63 33 31 34 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 83 91 71 cc", + "msecs": 60.292959213256836, + "msg": "Send data: (188): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 33 2c 20 22 64 61 74 61 22 3a 20 22 31 34 36 34 34 37 36 61 32 65 36 61 30 36 38 34 31 62 64 34 39 32 32 63 38 34 62 61 32 66 32 31 38 38 35 30 61 63 38 36 63 38 32 61 65 38 31 61 38 31 61 62 31 33 32 61 34 32 33 31 33 37 64 61 39 62 61 32 33 39 61 63 62 34 37 63 63 32 35 37 37 34 30 61 64 61 30 33 30 33 35 65 36 35 61 37 31 31 30 36 33 34 31 65 65 62 36 65 37 32 37 37 63 31 63 36 37 38 34 36 66 35 62 36 33 62 66 36 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d f6 4d 06 2a", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 1770.400047302246, - "thread": 140487038072576, + "relativeCreated": 1754.0318965911865, + "thread": 140534738941696, "threadName": "Thread-6" }, { "args": [], - "asctime": "2020-01-29 07:23:09,028", - "created": 1580278989.028637, + "asctime": "2020-12-21 22:32:51,211", + "created": 1608586371.211903, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -7183,16 +7243,16 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 66, - "message": "Receive data (188): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 33 2c 20 22 64 61 74 61 22 3a 20 22 61 33 38 34 37 64 33 66 32 64 37 66 30 37 39 31 63 65 34 35 39 64 63 66 30 62 35 61 65 38 34 62 61 37 34 34 30 38 30 65 35 31 62 64 38 34 64 34 38 35 63 39 37 33 32 64 66 32 30 35 32 62 37 64 36 37 33 65 62 34 35 37 36 38 62 61 38 35 61 62 62 65 65 34 32 66 33 37 62 62 39 38 62 39 65 38 63 38 66 38 31 35 36 30 65 62 30 64 39 64 37 38 35 61 62 35 62 66 31 39 30 62 31 39 63 33 31 34 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 83 91 71 cc", + "message": "Receive data (188): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 33 2c 20 22 64 61 74 61 22 3a 20 22 31 34 36 34 34 37 36 61 32 65 36 61 30 36 38 34 31 62 64 34 39 32 32 63 38 34 62 61 32 66 32 31 38 38 35 30 61 63 38 36 63 38 32 61 65 38 31 61 38 31 61 62 31 33 32 61 34 32 33 31 33 37 64 61 39 62 61 32 33 39 61 63 62 34 37 63 63 32 35 37 37 34 30 61 64 61 30 33 30 33 35 65 36 35 61 37 31 31 30 36 33 34 31 65 65 62 36 65 37 32 37 37 63 31 63 36 37 38 34 36 66 35 62 36 33 62 66 36 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d f6 4d 06 2a", "module": "test_helpers", - "msecs": 28.636932373046875, - "msg": "Receive data (188): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 33 2c 20 22 64 61 74 61 22 3a 20 22 61 33 38 34 37 64 33 66 32 64 37 66 30 37 39 31 63 65 34 35 39 64 63 66 30 62 35 61 65 38 34 62 61 37 34 34 30 38 30 65 35 31 62 64 38 34 64 34 38 35 63 39 37 33 32 64 66 32 30 35 32 62 37 64 36 37 33 65 62 34 35 37 36 38 62 61 38 35 61 62 62 65 65 34 32 66 33 37 62 62 39 38 62 39 65 38 63 38 66 38 31 35 36 30 65 62 30 64 39 64 37 38 35 61 62 35 62 66 31 39 30 62 31 39 63 33 31 34 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 83 91 71 cc", + "msecs": 211.90309524536133, + "msg": "Receive data (188): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 33 2c 20 22 64 61 74 61 22 3a 20 22 31 34 36 34 34 37 36 61 32 65 36 61 30 36 38 34 31 62 64 34 39 32 32 63 38 34 62 61 32 66 32 31 38 38 35 30 61 63 38 36 63 38 32 61 65 38 31 61 38 31 61 62 31 33 32 61 34 32 33 31 33 37 64 61 39 62 61 32 33 39 61 63 62 34 37 63 63 32 35 37 37 34 30 61 64 61 30 33 30 33 35 65 36 35 61 37 31 31 30 36 33 34 31 65 65 62 36 65 37 32 37 37 63 31 63 36 37 38 34 36 66 35 62 36 33 62 66 36 22 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d f6 4d 06 2a", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 1921.0379123687744, - "thread": 140487116760832, + "relativeCreated": 1905.642032623291, + "thread": 140534747334400, "threadName": "Thread-7" }, { @@ -7201,27 +7261,27 @@ "0", "3", "0", - "u'a3847d3f2d7f0791ce459dcf0b5ae84ba744080e51bd84d485c9732df2052b7d673eb45768ba85abbee42f37bb98b9e8c8f81560eb0d9d785ab5bf190b19c314'" + "u'1464476a2e6a06841bd4922c84ba2f218850ac86c82ae81a81ab132a423137da9ba239acb47cc257740ada03035e65a71106341eeb6e7277c1c67846f5b63bf6'" ], - "asctime": "2020-01-29 07:23:09,028", - "created": 1580278989.02883, + "asctime": "2020-12-21 22:32:51,212", + "created": 1608586371.212393, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 247, - "message": "SJP: RX <- status: 0, service_id: 3, data_id: 0, data: \"u'a3847d3f2d7f0791ce459dcf0b5ae84ba744080e51bd84d485c9732df2052b7d673eb45768ba85abbee42f37bb98b9e8c8f81560eb0d9d785ab5bf190b19c314'\"", + "lineno": 265, + "message": "SJP: RX <- status: 0, service_id: 3, data_id: 0, data: \"u'1464476a2e6a06841bd4922c84ba2f218850ac86c82ae81a81ab132a423137da9ba239acb47cc257740ada03035e65a71106341eeb6e7277c1c67846f5b63bf6'\"", "module": "__init__", - "msecs": 28.83005142211914, + "msecs": 212.39304542541504, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 1921.2310314178467, - "thread": 140487116760832, + "relativeCreated": 1906.1319828033447, + "thread": 140534747334400, "threadName": "Thread-7" }, { @@ -7229,50 +7289,50 @@ "SJP:", "__authentificate_check_key__" ], - "asctime": "2020-01-29 07:23:09,028", - "created": 1580278989.028937, + "asctime": "2020-12-21 22:32:51,212", + "created": 1608586371.212639, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 264, + "lineno": 282, "message": "SJP: Executing callback __authentificate_check_key__ to process received data", "module": "__init__", - "msecs": 28.937101364135742, + "msecs": 212.63909339904785, "msg": "%s Executing callback %s to process received data", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 1921.3380813598633, - "thread": 140487116760832, + "relativeCreated": 1906.3780307769775, + "thread": 140534747334400, "threadName": "Thread-7" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:09,029", - "created": 1580278989.029021, + "asctime": "2020-12-21 22:32:51,212", + "created": 1608586371.21297, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentificate_check_key__", "levelname": "INFO", "levelno": 20, - "lineno": 423, + "lineno": 441, "message": "SJP: Got correct key, sending positive authentification feedback", "module": "__init__", - "msecs": 29.021024703979492, + "msecs": 212.97001838684082, "msg": "%s Got correct key, sending positive authentification feedback", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 1921.422004699707, - "thread": 140487116760832, + "relativeCreated": 1906.7089557647705, + "thread": 140534747334400, "threadName": "Thread-7" }, { @@ -7283,31 +7343,31 @@ 0, "True" ], - "asctime": "2020-01-29 07:23:09,029", - "created": 1580278989.029098, + "asctime": "2020-12-21 22:32:51,213", + "created": 1608586371.213197, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 334, + "lineno": 352, "message": "SJP: TX -> status: 0, service_id: 4, data_id: 0, data: \"True\"", "module": "__init__", - "msecs": 29.098033905029297, + "msecs": 213.1969928741455, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 1921.4990139007568, - "thread": 140487116760832, + "relativeCreated": 1906.9359302520752, + "thread": 140534747334400, "threadName": "Thread-7" }, { "args": [], - "asctime": "2020-01-29 07:23:09,029", - "created": 1580278989.02925, + "asctime": "2020-12-21 22:32:51,213", + "created": 1608586371.21365, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -7317,20 +7377,20 @@ "lineno": 55, "message": "Send data: (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 34 2c 20 22 64 61 74 61 22 3a 20 74 72 75 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d c5 2b 78 11", "module": "test_helpers", - "msecs": 29.249906539916992, + "msecs": 213.64998817443848, "msg": "Send data: (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 34 2c 20 22 64 61 74 61 22 3a 20 74 72 75 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d c5 2b 78 11", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 1921.6508865356445, - "thread": 140487116760832, + "relativeCreated": 1907.3889255523682, + "thread": 140534747334400, "threadName": "Thread-7" }, { "args": [], - "asctime": "2020-01-29 07:23:09,179", - "created": 1580278989.179708, + "asctime": "2020-12-21 22:32:51,364", + "created": 1608586371.364903, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -7340,14 +7400,14 @@ "lineno": 66, "message": "Receive data (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 34 2c 20 22 64 61 74 61 22 3a 20 74 72 75 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d c5 2b 78 11", "module": "test_helpers", - "msecs": 179.70800399780273, + "msecs": 364.9029731750488, "msg": "Receive data (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 34 2c 20 22 64 61 74 61 22 3a 20 74 72 75 65 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d c5 2b 78 11", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 2072.1089839935303, - "thread": 140487038072576, + "relativeCreated": 2058.6419105529785, + "thread": 140534738941696, "threadName": "Thread-8" }, { @@ -7358,25 +7418,25 @@ "0", "True" ], - "asctime": "2020-01-29 07:23:09,179", - "created": 1580278989.179888, + "asctime": "2020-12-21 22:32:51,365", + "created": 1608586371.365429, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 247, + "lineno": 265, "message": "SJP: RX <- status: 0, service_id: 4, data_id: 0, data: \"True\"", "module": "__init__", - "msecs": 179.8880100250244, + "msecs": 365.4289245605469, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 2072.288990020752, - "thread": 140487038072576, + "relativeCreated": 2059.1678619384766, + "thread": 140534738941696, "threadName": "Thread-8" }, { @@ -7384,50 +7444,50 @@ "SJP:", "__authentificate_process_feedback__" ], - "asctime": "2020-01-29 07:23:09,179", - "created": 1580278989.179985, + "asctime": "2020-12-21 22:32:51,365", + "created": 1608586371.365673, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 281, + "lineno": 299, "message": "SJP: Executing callback __authentificate_process_feedback__ to process received data", "module": "__init__", - "msecs": 179.98504638671875, + "msecs": 365.6730651855469, "msg": "%s Executing callback %s to process received data", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 2072.3860263824463, - "thread": 140487038072576, + "relativeCreated": 2059.4120025634766, + "thread": 140534738941696, "threadName": "Thread-8" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:09,180", - "created": 1580278989.180061, + "asctime": "2020-12-21 22:32:51,366", + "created": 1608586371.366238, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentificate_process_feedback__", "levelname": "INFO", "levelno": 20, - "lineno": 434, + "lineno": 452, "message": "SJP: Got positive authentification feedback", "module": "__init__", - "msecs": 180.06110191345215, + "msecs": 366.2381172180176, "msg": "%s Got positive authentification feedback", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 2072.4620819091797, - "thread": 140487038072576, + "relativeCreated": 2059.9770545959473, + "thread": 140534738941696, "threadName": "Thread-8" }, { @@ -7438,31 +7498,31 @@ 45054, "{u'test': u'test'}" ], - "asctime": "2020-01-29 07:23:09,277", - "created": 1580278989.277094, + "asctime": "2020-12-21 22:32:51,458", + "created": 1608586371.45834, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 334, + "lineno": 352, "message": "SJP: TX -> status: 0, service_id: 10, data_id: 45054, data: \"{u'test': u'test'}\"", "module": "__init__", - "msecs": 277.09388732910156, + "msecs": 458.3399295806885, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 2169.494867324829, - "thread": 140487175731008, + "relativeCreated": 2152.078866958618, + "thread": 140534768363328, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-01-29 07:23:09,277", - "created": 1580278989.277366, + "asctime": "2020-12-21 22:32:51,459", + "created": 1608586371.459155, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -7472,20 +7532,20 @@ "lineno": 55, "message": "Send data: (79): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 7d 63 ee c4 24", "module": "test_helpers", - "msecs": 277.36592292785645, + "msecs": 459.1550827026367, "msg": "Send data: (79): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 7d 63 ee c4 24", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 2169.766902923584, - "thread": 140487175731008, + "relativeCreated": 2152.8940200805664, + "thread": 140534768363328, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-01-29 07:23:09,427", - "created": 1580278989.427883, + "asctime": "2020-12-21 22:32:51,610", + "created": 1608586371.610726, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -7495,14 +7555,14 @@ "lineno": 66, "message": "Receive data (79): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 7d 63 ee c4 24", "module": "test_helpers", - "msecs": 427.8829097747803, + "msecs": 610.7261180877686, "msg": "Receive data (79): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 7d 63 ee c4 24", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 2320.283889770508, - "thread": 140487038072576, + "relativeCreated": 2304.4650554656982, + "thread": 140534738941696, "threadName": "Thread-9" }, { @@ -7513,25 +7573,25 @@ "45054", "{u'test': u'test'}" ], - "asctime": "2020-01-29 07:23:09,428", - "created": 1580278989.42808, + "asctime": "2020-12-21 22:32:51,611", + "created": 1608586371.611235, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 247, + "lineno": 265, "message": "SJP: RX <- status: 0, service_id: 10, data_id: 45054, data: \"{u'test': u'test'}\"", "module": "__init__", - "msecs": 428.08008193969727, + "msecs": 611.2349033355713, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 2320.481061935425, - "thread": 140487038072576, + "relativeCreated": 2304.973840713501, + "thread": 140534738941696, "threadName": "Thread-9" }, { @@ -7539,25 +7599,25 @@ "SJP:", "response_data_method" ], - "asctime": "2020-01-29 07:23:09,428", - "created": 1580278989.428179, + "asctime": "2020-12-21 22:32:51,611", + "created": 1608586371.611478, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 264, + "lineno": 282, "message": "SJP: Executing callback response_data_method to process received data", "module": "__init__", - "msecs": 428.1790256500244, + "msecs": 611.4780902862549, "msg": "%s Executing callback %s to process received data", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 2320.580005645752, - "thread": 140487038072576, + "relativeCreated": 2305.2170276641846, + "thread": 140534738941696, "threadName": "Thread-9" }, { @@ -7568,31 +7628,31 @@ 45054, "[1, 3, u's']" ], - "asctime": "2020-01-29 07:23:09,428", - "created": 1580278989.428257, + "asctime": "2020-12-21 22:32:51,611", + "created": 1608586371.611682, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 334, + "lineno": 352, "message": "SJP: TX -> status: 5, service_id: 11, data_id: 45054, data: \"[1, 3, u's']\"", "module": "__init__", - "msecs": 428.2569885253906, + "msecs": 611.6819381713867, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 2320.657968521118, - "thread": 140487038072576, + "relativeCreated": 2305.4208755493164, + "thread": 140534738941696, "threadName": "Thread-9" }, { "args": [], - "asctime": "2020-01-29 07:23:09,428", - "created": 1580278989.428414, + "asctime": "2020-12-21 22:32:51,612", + "created": 1608586371.612177, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -7602,20 +7662,20 @@ "lineno": 55, "message": "Send data: (74): 7b 22 73 74 61 74 75 73 22 3a 20 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 5b 31 2c 20 33 2c 20 22 73 22 5d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 7d 85 0b b7 34", "module": "test_helpers", - "msecs": 428.41410636901855, + "msecs": 612.1768951416016, "msg": "Send data: (74): 7b 22 73 74 61 74 75 73 22 3a 20 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 5b 31 2c 20 33 2c 20 22 73 22 5d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 7d 85 0b b7 34", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 2320.815086364746, - "thread": 140487038072576, + "relativeCreated": 2305.9158325195312, + "thread": 140534738941696, "threadName": "Thread-9" }, { "args": [], - "asctime": "2020-01-29 07:23:09,578", - "created": 1580278989.578873, + "asctime": "2020-12-21 22:32:51,763", + "created": 1608586371.763441, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -7625,14 +7685,14 @@ "lineno": 66, "message": "Receive data (74): 7b 22 73 74 61 74 75 73 22 3a 20 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 5b 31 2c 20 33 2c 20 22 73 22 5d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 7d 85 0b b7 34", "module": "test_helpers", - "msecs": 578.8729190826416, + "msecs": 763.4410858154297, "msg": "Receive data (74): 7b 22 73 74 61 74 75 73 22 3a 20 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 5b 31 2c 20 33 2c 20 22 73 22 5d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 7d 85 0b b7 34", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 2471.273899078369, - "thread": 140487116760832, + "relativeCreated": 2457.1800231933594, + "thread": 140534747334400, "threadName": "Thread-10" }, { @@ -7643,25 +7703,25 @@ "45054", "[1, 3, u's']" ], - "asctime": "2020-01-29 07:23:09,579", - "created": 1580278989.579082, + "asctime": "2020-12-21 22:32:51,763", + "created": 1608586371.763897, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 247, + "lineno": 265, "message": "SJP: RX <- status: 5, service_id: 11, data_id: 45054, data: \"[1, 3, u's']\"", "module": "__init__", - "msecs": 579.0820121765137, + "msecs": 763.8969421386719, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 2471.482992172241, - "thread": 140487116760832, + "relativeCreated": 2457.6358795166016, + "thread": 140534747334400, "threadName": "Thread-10" }, { @@ -7669,71 +7729,71 @@ "SJP:", "Operation not permitted" ], - "asctime": "2020-01-29 07:23:09,579", - "created": 1580278989.579195, + "asctime": "2020-12-21 22:32:51,764", + "created": 1608586371.764175, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "WARNING", "levelno": 30, - "lineno": 274, + "lineno": 292, "message": "SJP: Received message has a peculiar status: Operation not permitted", "module": "__init__", - "msecs": 579.1950225830078, + "msecs": 764.1749382019043, "msg": "%s Received message has a peculiar status: %s", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 2471.5960025787354, - "thread": 140487116760832, + "relativeCreated": 2457.913875579834, + "thread": 140534747334400, "threadName": "Thread-10" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:09,579", - "created": 1580278989.579281, + "asctime": "2020-12-21 22:32:51,764", + "created": 1608586371.764389, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 292, + "lineno": 310, "message": "SJP: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 579.2810916900635, + "msecs": 764.3890380859375, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 2471.682071685791, - "thread": 140487116760832, + "relativeCreated": 2458.127975463867, + "thread": 140534747334400, "threadName": "Thread-10" } ], - "msecs": 778.5599231719971, + "msecs": 961.3909721374512, "msg": "Send and received data by pure_json_protocol.", "name": "__tLogger__", "pathname": "src/tests/test_normal_operation.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 2670.9609031677246, - "thread": 140487175731008, + "relativeCreated": 2655.129909515381, + "thread": 140534768363328, "threadName": "MainThread", - "time_consumption": 0.1992788314819336 + "time_consumption": 0.19700193405151367 }, { "args": [ "True", "" ], - "asctime": "2020-01-29 07:23:09,778", - "created": 1580278989.778937, + "asctime": "2020-12-21 22:32:51,962", + "created": 1608586371.96234, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -7750,8 +7810,8 @@ "True", "" ], - "asctime": "2020-01-29 07:23:09,778", - "created": 1580278989.778788, + "asctime": "2020-12-21 22:32:51,961", + "created": 1608586371.961962, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -7761,14 +7821,14 @@ "lineno": 22, "message": "Result (Return value of authentification): True ()", "module": "test", - "msecs": 778.7880897521973, + "msecs": 961.9619846343994, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 2671.189069747925, - "thread": 140487175731008, + "relativeCreated": 2655.700922012329, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -7777,8 +7837,8 @@ "True", "" ], - "asctime": "2020-01-29 07:23:09,778", - "created": 1580278989.778873, + "asctime": "2020-12-21 22:32:51,962", + "created": 1608586371.962163, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -7788,35 +7848,35 @@ "lineno": 26, "message": "Expectation (Return value of authentification): result = True ()", "module": "test", - "msecs": 778.8729667663574, + "msecs": 962.162971496582, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 2671.273946762085, - "thread": 140487175731008, + "relativeCreated": 2655.9019088745117, + "thread": 140534768363328, "threadName": "MainThread" } ], - "msecs": 778.9371013641357, + "msecs": 962.3401165008545, "msg": "Return value of authentification is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 2671.3380813598633, - "thread": 140487175731008, + "relativeCreated": 2656.079053878784, + "thread": 140534768363328, "threadName": "MainThread", - "time_consumption": 6.413459777832031e-05 + "time_consumption": 0.00017714500427246094 }, { "args": [ "True", "" ], - "asctime": "2020-01-29 07:23:09,779", - "created": 1580278989.779135, + "asctime": "2020-12-21 22:32:51,962", + "created": 1608586371.962915, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -7833,8 +7893,8 @@ "True", "" ], - "asctime": "2020-01-29 07:23:09,779", - "created": 1580278989.779032, + "asctime": "2020-12-21 22:32:51,962", + "created": 1608586371.962606, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -7844,14 +7904,14 @@ "lineno": 22, "message": "Result (Return value of send method): True ()", "module": "test", - "msecs": 779.0319919586182, + "msecs": 962.6059532165527, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 2671.4329719543457, - "thread": 140487175731008, + "relativeCreated": 2656.3448905944824, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -7860,8 +7920,8 @@ "True", "" ], - "asctime": "2020-01-29 07:23:09,779", - "created": 1580278989.779084, + "asctime": "2020-12-21 22:32:51,962", + "created": 1608586371.962762, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -7871,35 +7931,35 @@ "lineno": 26, "message": "Expectation (Return value of send method): result = True ()", "module": "test", - "msecs": 779.0839672088623, + "msecs": 962.7621173858643, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 2671.48494720459, - "thread": 140487175731008, + "relativeCreated": 2656.501054763794, + "thread": 140534768363328, "threadName": "MainThread" } ], - "msecs": 779.13498878479, + "msecs": 962.9149436950684, "msg": "Return value of send method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 2671.5359687805176, - "thread": 140487175731008, + "relativeCreated": 2656.653881072998, + "thread": 140534768363328, "threadName": "MainThread", - "time_consumption": 5.1021575927734375e-05 + "time_consumption": 0.00015282630920410156 }, { "args": [ "0", "" ], - "asctime": "2020-01-29 07:23:09,779", - "created": 1580278989.779308, + "asctime": "2020-12-21 22:32:51,963", + "created": 1608586371.963473, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -7916,8 +7976,8 @@ "0", "" ], - "asctime": "2020-01-29 07:23:09,779", - "created": 1580278989.779216, + "asctime": "2020-12-21 22:32:51,963", + "created": 1608586371.963176, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -7927,14 +7987,14 @@ "lineno": 22, "message": "Result (Request Status (Okay) transfered via pure_json_protocol): 0 ()", "module": "test", - "msecs": 779.2160511016846, + "msecs": 963.1760120391846, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 2671.617031097412, - "thread": 140487175731008, + "relativeCreated": 2656.9149494171143, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -7943,8 +8003,8 @@ "0", "" ], - "asctime": "2020-01-29 07:23:09,779", - "created": 1580278989.779264, + "asctime": "2020-12-21 22:32:51,963", + "created": 1608586371.963324, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -7954,35 +8014,35 @@ "lineno": 26, "message": "Expectation (Request Status (Okay) transfered via pure_json_protocol): result = 0 ()", "module": "test", - "msecs": 779.263973236084, + "msecs": 963.3240699768066, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 2671.6649532318115, - "thread": 140487175731008, + "relativeCreated": 2657.0630073547363, + "thread": 140534768363328, "threadName": "MainThread" } ], - "msecs": 779.3080806732178, + "msecs": 963.4730815887451, "msg": "Request Status (Okay) transfered via pure_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 2671.7090606689453, - "thread": 140487175731008, + "relativeCreated": 2657.212018966675, + "thread": 140534768363328, "threadName": "MainThread", - "time_consumption": 4.410743713378906e-05 + "time_consumption": 0.00014901161193847656 }, { "args": [ "{u'test': u'test'}", "" ], - "asctime": "2020-01-29 07:23:09,779", - "created": 1580278989.779497, + "asctime": "2020-12-21 22:32:51,964", + "created": 1608586371.964079, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -7999,8 +8059,8 @@ "{ u'test': u'test' }", "" ], - "asctime": "2020-01-29 07:23:09,779", - "created": 1580278989.779388, + "asctime": "2020-12-21 22:32:51,963", + "created": 1608586371.96373, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8010,14 +8070,14 @@ "lineno": 22, "message": "Result (Request Data transfered via pure_json_protocol): { u'test': u'test' } ()", "module": "test", - "msecs": 779.3879508972168, + "msecs": 963.7300968170166, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 2671.7889308929443, - "thread": 140487175731008, + "relativeCreated": 2657.4690341949463, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -8026,8 +8086,8 @@ "{ u'test': u'test' }", "" ], - "asctime": "2020-01-29 07:23:09,779", - "created": 1580278989.779438, + "asctime": "2020-12-21 22:32:51,963", + "created": 1608586371.963886, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8037,35 +8097,35 @@ "lineno": 26, "message": "Expectation (Request Data transfered via pure_json_protocol): result = { u'test': u'test' } ()", "module": "test", - "msecs": 779.4380187988281, + "msecs": 963.886022567749, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 2671.8389987945557, - "thread": 140487175731008, + "relativeCreated": 2657.6249599456787, + "thread": 140534768363328, "threadName": "MainThread" } ], - "msecs": 779.4969081878662, + "msecs": 964.0789031982422, "msg": "Request Data transfered via pure_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 2671.8978881835938, - "thread": 140487175731008, + "relativeCreated": 2657.817840576172, + "thread": 140534768363328, "threadName": "MainThread", - "time_consumption": 5.888938903808594e-05 + "time_consumption": 0.00019288063049316406 }, { "args": [ "5", "" ], - "asctime": "2020-01-29 07:23:09,779", - "created": 1580278989.779658, + "asctime": "2020-12-21 22:32:51,964", + "created": 1608586371.964635, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8082,8 +8142,8 @@ "5", "" ], - "asctime": "2020-01-29 07:23:09,779", - "created": 1580278989.779574, + "asctime": "2020-12-21 22:32:51,964", + "created": 1608586371.964336, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8093,14 +8153,14 @@ "lineno": 22, "message": "Result (Response Status (Operation not permitted) transfered via pure_json_protocol): 5 ()", "module": "test", - "msecs": 779.573917388916, + "msecs": 964.3359184265137, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 2671.9748973846436, - "thread": 140487175731008, + "relativeCreated": 2658.0748558044434, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -8109,8 +8169,8 @@ "5", "" ], - "asctime": "2020-01-29 07:23:09,779", - "created": 1580278989.779616, + "asctime": "2020-12-21 22:32:51,964", + "created": 1608586371.964487, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8120,35 +8180,35 @@ "lineno": 26, "message": "Expectation (Response Status (Operation not permitted) transfered via pure_json_protocol): result = 5 ()", "module": "test", - "msecs": 779.616117477417, + "msecs": 964.4870758056641, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 2672.0170974731445, - "thread": 140487175731008, + "relativeCreated": 2658.2260131835938, + "thread": 140534768363328, "threadName": "MainThread" } ], - "msecs": 779.6580791473389, + "msecs": 964.634895324707, "msg": "Response Status (Operation not permitted) transfered via pure_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 2672.0590591430664, - "thread": 140487175731008, + "relativeCreated": 2658.3738327026367, + "thread": 140534768363328, "threadName": "MainThread", - "time_consumption": 4.1961669921875e-05 + "time_consumption": 0.00014781951904296875 }, { "args": [ "[1, 3, u's']", "" ], - "asctime": "2020-01-29 07:23:09,779", - "created": 1580278989.779841, + "asctime": "2020-12-21 22:32:51,965", + "created": 1608586371.965293, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8165,8 +8225,8 @@ "[ 1, 3, u's' ]", "" ], - "asctime": "2020-01-29 07:23:09,779", - "created": 1580278989.779734, + "asctime": "2020-12-21 22:32:51,964", + "created": 1608586371.964921, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8176,14 +8236,14 @@ "lineno": 22, "message": "Result (Response Data transfered via pure_json_protocol): [ 1, 3, u's' ] ()", "module": "test", - "msecs": 779.7338962554932, + "msecs": 964.9209976196289, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 2672.1348762512207, - "thread": 140487175731008, + "relativeCreated": 2658.6599349975586, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -8192,8 +8252,8 @@ "[ 1, 3, u's' ]", "" ], - "asctime": "2020-01-29 07:23:09,779", - "created": 1580278989.779781, + "asctime": "2020-12-21 22:32:51,965", + "created": 1608586371.965083, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8203,35 +8263,35 @@ "lineno": 26, "message": "Expectation (Response Data transfered via pure_json_protocol): result = [ 1, 3, u's' ] ()", "module": "test", - "msecs": 779.7811031341553, + "msecs": 965.0828838348389, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 2672.182083129883, - "thread": 140487175731008, + "relativeCreated": 2658.8218212127686, + "thread": 140534768363328, "threadName": "MainThread" } ], - "msecs": 779.8409461975098, + "msecs": 965.2929306030273, "msg": "Response Data transfered via pure_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 2672.2419261932373, - "thread": 140487175731008, + "relativeCreated": 2659.031867980957, + "thread": 140534768363328, "threadName": "MainThread", - "time_consumption": 5.984306335449219e-05 + "time_consumption": 0.00021004676818847656 }, { "args": [ "None", "" ], - "asctime": "2020-01-29 07:23:09,880", - "created": 1580278989.880411, + "asctime": "2020-12-21 22:32:52,066", + "created": 1608586372.066667, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8249,25 +8309,25 @@ "11", "45054" ], - "asctime": "2020-01-29 07:23:09,880", - "created": 1580278989.880104, + "asctime": "2020-12-21 22:32:52,065", + "created": 1608586372.065905, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 309, + "lineno": 327, "message": "SJP: TIMEOUT (0.1s): Requested data (service_id: 11; data_id: 45054) not in buffer.", "module": "__init__", - "msecs": 880.1040649414062, + "msecs": 65.90509414672852, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 2772.505044937134, - "thread": 140487175731008, + "relativeCreated": 2759.644031524658, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -8276,8 +8336,8 @@ "None", "" ], - "asctime": "2020-01-29 07:23:09,880", - "created": 1580278989.880251, + "asctime": "2020-12-21 22:32:52,066", + "created": 1608586372.066262, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8287,14 +8347,14 @@ "lineno": 22, "message": "Result (Return Value (request instance) for pure_json_protocol.receive with data data_id 0xaffe): None ()", "module": "test", - "msecs": 880.2509307861328, + "msecs": 66.26200675964355, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 2772.6519107818604, - "thread": 140487175731008, + "relativeCreated": 2760.0009441375732, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -8303,8 +8363,8 @@ "None", "" ], - "asctime": "2020-01-29 07:23:09,880", - "created": 1580278989.880341, + "asctime": "2020-12-21 22:32:52,066", + "created": 1608586372.066488, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8314,35 +8374,35 @@ "lineno": 26, "message": "Expectation (Return Value (request instance) for pure_json_protocol.receive with data data_id 0xaffe): result = None ()", "module": "test", - "msecs": 880.3410530090332, + "msecs": 66.48802757263184, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 2772.7420330047607, - "thread": 140487175731008, + "relativeCreated": 2760.2269649505615, + "thread": 140534768363328, "threadName": "MainThread" } ], - "msecs": 880.41090965271, + "msecs": 66.66707992553711, "msg": "Return Value (request instance) for pure_json_protocol.receive with data data_id 0xaffe is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 2772.8118896484375, - "thread": 140487175731008, + "relativeCreated": 2760.406017303467, + "thread": 140534768363328, "threadName": "MainThread", - "time_consumption": 6.985664367675781e-05 + "time_consumption": 0.00017905235290527344 }, { "args": [ "None", "" ], - "asctime": "2020-01-29 07:23:09,981", - "created": 1580278989.981091, + "asctime": "2020-12-21 22:32:52,168", + "created": 1608586372.168063, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8360,25 +8420,25 @@ "10", "45054" ], - "asctime": "2020-01-29 07:23:09,980", - "created": 1580278989.98071, + "asctime": "2020-12-21 22:32:52,167", + "created": 1608586372.167328, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 309, + "lineno": 327, "message": "SJP: TIMEOUT (0.1s): Requested data (service_id: 10; data_id: 45054) not in buffer.", "module": "__init__", - "msecs": 980.7100296020508, + "msecs": 167.327880859375, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 2873.1110095977783, - "thread": 140487175731008, + "relativeCreated": 2861.0668182373047, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -8387,8 +8447,8 @@ "None", "" ], - "asctime": "2020-01-29 07:23:09,980", - "created": 1580278989.9809, + "asctime": "2020-12-21 22:32:52,167", + "created": 1608586372.167689, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8398,14 +8458,14 @@ "lineno": 22, "message": "Result (Return Value (response instance) for pure_json_protocol.receive with data data_id 0xaffe): None ()", "module": "test", - "msecs": 980.9000492095947, + "msecs": 167.68908500671387, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 2873.3010292053223, - "thread": 140487175731008, + "relativeCreated": 2861.4280223846436, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -8414,8 +8474,8 @@ "None", "" ], - "asctime": "2020-01-29 07:23:09,980", - "created": 1580278989.980997, + "asctime": "2020-12-21 22:32:52,167", + "created": 1608586372.167884, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8425,39 +8485,39 @@ "lineno": 26, "message": "Expectation (Return Value (response instance) for pure_json_protocol.receive with data data_id 0xaffe): result = None ()", "module": "test", - "msecs": 980.9970855712891, + "msecs": 167.88411140441895, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 2873.3980655670166, - "thread": 140487175731008, + "relativeCreated": 2861.6230487823486, + "thread": 140534768363328, "threadName": "MainThread" } ], - "msecs": 981.0910224914551, + "msecs": 168.06292533874512, "msg": "Return Value (response instance) for pure_json_protocol.receive with data data_id 0xaffe is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 2873.4920024871826, - "thread": 140487175731008, + "relativeCreated": 2861.801862716675, + "thread": 140534768363328, "threadName": "MainThread", - "time_consumption": 9.393692016601562e-05 + "time_consumption": 0.00017881393432617188 } ], - "thread": 140487175731008, + "thread": 140534768363328, "threadName": "MainThread", - "time_consumption": 1.406033992767334, - "time_finished": "2020-01-29 07:23:09,981", - "time_start": "2020-01-29 07:23:08,575" + "time_consumption": 1.4144208431243896, + "time_finished": "2020-12-21 22:32:52,168", + "time_start": "2020-12-21 22:32:50,753" }, "socket_protocol.pure_json_protocol: Send and receive check.": { "args": null, - "asctime": "2020-01-29 07:23:07,870", - "created": 1580278987.870665, + "asctime": "2020-12-21 22:32:50,045", + "created": 1608586370.045864, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -8468,18 +8528,18 @@ "message": "socket_protocol.pure_json_protocol: Send and receive check.", "module": "__init__", "moduleLogger": [], - "msecs": 870.6650733947754, + "msecs": 45.864105224609375, "msg": "socket_protocol.pure_json_protocol: Send and receive check.", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 763.0660533905029, + "relativeCreated": 739.6030426025391, "testcaseLogger": [ { "args": [], - "asctime": "2020-01-29 07:23:08,372", - "created": 1580278988.37246, + "asctime": "2020-12-21 22:32:50,548", + "created": 1608586370.548834, "exc_info": null, "exc_text": null, "filename": "test_normal_operation.py", @@ -8494,100 +8554,100 @@ "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:07,870", - "created": 1580278987.870779, + "asctime": "2020-12-21 22:32:50,046", + "created": 1608586370.046062, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 295, + "lineno": 313, "message": "SJP: Cleaning up receive-buffer", "module": "__init__", - "msecs": 870.7790374755859, + "msecs": 46.06199264526367, "msg": "%s Cleaning up receive-buffer", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 763.1800174713135, - "thread": 140487175731008, + "relativeCreated": 739.8009300231934, + "thread": 140534768363328, "threadName": "MainThread" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:07,870", - "created": 1580278987.870909, + "asctime": "2020-12-21 22:32:50,046", + "created": 1608586370.046283, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 199, + "lineno": 217, "message": "SJP: Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "module": "__init__", - "msecs": 870.9089756011963, + "msecs": 46.28300666809082, "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 763.3099555969238, - "thread": 140487175731008, + "relativeCreated": 740.0219440460205, + "thread": 140534768363328, "threadName": "MainThread" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:07,870", - "created": 1580278987.870987, + "asctime": "2020-12-21 22:32:50,046", + "created": 1608586370.046414, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 295, + "lineno": 313, "message": "SJP: Cleaning up receive-buffer", "module": "__init__", - "msecs": 870.9869384765625, + "msecs": 46.41389846801758, "msg": "%s Cleaning up receive-buffer", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 763.38791847229, - "thread": 140487175731008, + "relativeCreated": 740.1528358459473, + "thread": 140534768363328, "threadName": "MainThread" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:07,871", - "created": 1580278987.871087, + "asctime": "2020-12-21 22:32:50,046", + "created": 1608586370.046602, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 199, + "lineno": 217, "message": "SJP: Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "module": "__init__", - "msecs": 871.0870742797852, + "msecs": 46.60201072692871, "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 763.4880542755127, - "thread": 140487175731008, + "relativeCreated": 740.3409481048584, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -8598,31 +8658,31 @@ 45054, "{u'test': u'test'}" ], - "asctime": "2020-01-29 07:23:07,871", - "created": 1580278987.871167, + "asctime": "2020-12-21 22:32:50,046", + "created": 1608586370.046755, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 334, + "lineno": 352, "message": "SJP: TX -> status: 0, service_id: 10, data_id: 45054, data: \"{u'test': u'test'}\"", "module": "__init__", - "msecs": 871.1669445037842, + "msecs": 46.755075454711914, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 763.5679244995117, - "thread": 140487175731008, + "relativeCreated": 740.4940128326416, + "thread": 140534768363328, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-01-29 07:23:07,871", - "created": 1580278987.871329, + "asctime": "2020-12-21 22:32:50,047", + "created": 1608586370.047068, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -8632,20 +8692,20 @@ "lineno": 55, "message": "Send data: (79): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 7d 63 ee c4 24", "module": "test_helpers", - "msecs": 871.3290691375732, + "msecs": 47.068119049072266, "msg": "Send data: (79): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 7d 63 ee c4 24", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 763.7300491333008, - "thread": 140487175731008, + "relativeCreated": 740.807056427002, + "thread": 140534768363328, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-01-29 07:23:08,021", - "created": 1580278988.021946, + "asctime": "2020-12-21 22:32:50,198", + "created": 1608586370.198044, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -8655,14 +8715,14 @@ "lineno": 66, "message": "Receive data (79): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 7d 63 ee c4 24", "module": "test_helpers", - "msecs": 21.945953369140625, + "msecs": 198.0440616607666, "msg": "Receive data (79): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 7d 63 ee c4 24", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 914.3469333648682, - "thread": 140487038072576, + "relativeCreated": 891.7829990386963, + "thread": 140534738941696, "threadName": "Thread-3" }, { @@ -8673,25 +8733,25 @@ "45054", "{u'test': u'test'}" ], - "asctime": "2020-01-29 07:23:08,022", - "created": 1580278988.022131, + "asctime": "2020-12-21 22:32:50,198", + "created": 1608586370.198512, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 247, + "lineno": 265, "message": "SJP: RX <- status: 0, service_id: 10, data_id: 45054, data: \"{u'test': u'test'}\"", "module": "__init__", - "msecs": 22.130966186523438, + "msecs": 198.51207733154297, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 914.531946182251, - "thread": 140487038072576, + "relativeCreated": 892.2510147094727, + "thread": 140534738941696, "threadName": "Thread-3" }, { @@ -8699,25 +8759,25 @@ "SJP:", "response_data_method" ], - "asctime": "2020-01-29 07:23:08,022", - "created": 1580278988.022228, + "asctime": "2020-12-21 22:32:50,198", + "created": 1608586370.198747, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 264, + "lineno": 282, "message": "SJP: Executing callback response_data_method to process received data", "module": "__init__", - "msecs": 22.228002548217773, + "msecs": 198.746919631958, "msg": "%s Executing callback %s to process received data", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 914.6289825439453, - "thread": 140487038072576, + "relativeCreated": 892.4858570098877, + "thread": 140534738941696, "threadName": "Thread-3" }, { @@ -8728,31 +8788,31 @@ 45054, "[1, 3, u's']" ], - "asctime": "2020-01-29 07:23:08,022", - "created": 1580278988.022301, + "asctime": "2020-12-21 22:32:50,198", + "created": 1608586370.198958, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 334, + "lineno": 352, "message": "SJP: TX -> status: 5, service_id: 11, data_id: 45054, data: \"[1, 3, u's']\"", "module": "__init__", - "msecs": 22.30095863342285, + "msecs": 198.9579200744629, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 914.7019386291504, - "thread": 140487038072576, + "relativeCreated": 892.6968574523926, + "thread": 140534738941696, "threadName": "Thread-3" }, { "args": [], - "asctime": "2020-01-29 07:23:08,022", - "created": 1580278988.022457, + "asctime": "2020-12-21 22:32:50,199", + "created": 1608586370.199438, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -8762,20 +8822,20 @@ "lineno": 55, "message": "Send data: (74): 7b 22 73 74 61 74 75 73 22 3a 20 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 5b 31 2c 20 33 2c 20 22 73 22 5d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 7d 85 0b b7 34", "module": "test_helpers", - "msecs": 22.456884384155273, + "msecs": 199.43809509277344, "msg": "Send data: (74): 7b 22 73 74 61 74 75 73 22 3a 20 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 5b 31 2c 20 33 2c 20 22 73 22 5d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 7d 85 0b b7 34", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 914.8578643798828, - "thread": 140487038072576, + "relativeCreated": 893.1770324707031, + "thread": 140534738941696, "threadName": "Thread-3" }, { "args": [], - "asctime": "2020-01-29 07:23:08,172", - "created": 1580278988.17295, + "asctime": "2020-12-21 22:32:50,350", + "created": 1608586370.350448, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -8785,14 +8845,14 @@ "lineno": 66, "message": "Receive data (74): 7b 22 73 74 61 74 75 73 22 3a 20 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 5b 31 2c 20 33 2c 20 22 73 22 5d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 7d 85 0b b7 34", "module": "test_helpers", - "msecs": 172.95002937316895, + "msecs": 350.4478931427002, "msg": "Receive data (74): 7b 22 73 74 61 74 75 73 22 3a 20 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 5b 31 2c 20 33 2c 20 22 73 22 5d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 7d 85 0b b7 34", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 1065.3510093688965, - "thread": 140487116760832, + "relativeCreated": 1044.1868305206299, + "thread": 140534747334400, "threadName": "Thread-4" }, { @@ -8803,25 +8863,25 @@ "45054", "[1, 3, u's']" ], - "asctime": "2020-01-29 07:23:08,173", - "created": 1580278988.17321, + "asctime": "2020-12-21 22:32:50,350", + "created": 1608586370.350713, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 247, + "lineno": 265, "message": "SJP: RX <- status: 5, service_id: 11, data_id: 45054, data: \"[1, 3, u's']\"", "module": "__init__", - "msecs": 173.20990562438965, + "msecs": 350.71301460266113, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 1065.6108856201172, - "thread": 140487116760832, + "relativeCreated": 1044.4519519805908, + "thread": 140534747334400, "threadName": "Thread-4" }, { @@ -8829,71 +8889,71 @@ "SJP:", "Operation not permitted" ], - "asctime": "2020-01-29 07:23:08,173", - "created": 1580278988.17338, + "asctime": "2020-12-21 22:32:50,350", + "created": 1608586370.350876, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "WARNING", "levelno": 30, - "lineno": 274, + "lineno": 292, "message": "SJP: Received message has a peculiar status: Operation not permitted", "module": "__init__", - "msecs": 173.37989807128906, + "msecs": 350.8760929107666, "msg": "%s Received message has a peculiar status: %s", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 1065.7808780670166, - "thread": 140487116760832, + "relativeCreated": 1044.6150302886963, + "thread": 140534747334400, "threadName": "Thread-4" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:08,173", - "created": 1580278988.173492, + "asctime": "2020-12-21 22:32:50,351", + "created": 1608586370.351005, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 292, + "lineno": 310, "message": "SJP: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 173.4919548034668, + "msecs": 351.00507736206055, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 1065.8929347991943, - "thread": 140487116760832, + "relativeCreated": 1044.7440147399902, + "thread": 140534747334400, "threadName": "Thread-4" } ], - "msecs": 372.45988845825195, + "msecs": 548.8340854644775, "msg": "Send and received data by pure_json_protocol.", "name": "__tLogger__", "pathname": "src/tests/test_normal_operation.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 1264.8608684539795, - "thread": 140487175731008, + "relativeCreated": 1242.5730228424072, + "thread": 140534768363328, "threadName": "MainThread", - "time_consumption": 0.19896793365478516 + "time_consumption": 0.197829008102417 }, { "args": [ "True", "" ], - "asctime": "2020-01-29 07:23:08,372", - "created": 1580278988.372794, + "asctime": "2020-12-21 22:32:50,549", + "created": 1608586370.549259, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8910,8 +8970,8 @@ "True", "" ], - "asctime": "2020-01-29 07:23:08,372", - "created": 1580278988.372652, + "asctime": "2020-12-21 22:32:50,549", + "created": 1608586370.549089, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8921,14 +8981,14 @@ "lineno": 22, "message": "Result (Return value of send method): True ()", "module": "test", - "msecs": 372.6520538330078, + "msecs": 549.0889549255371, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 1265.0530338287354, - "thread": 140487175731008, + "relativeCreated": 1242.8278923034668, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -8937,8 +8997,8 @@ "True", "" ], - "asctime": "2020-01-29 07:23:08,372", - "created": 1580278988.372733, + "asctime": "2020-12-21 22:32:50,549", + "created": 1608586370.549181, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8948,35 +9008,35 @@ "lineno": 26, "message": "Expectation (Return value of send method): result = True ()", "module": "test", - "msecs": 372.73311614990234, + "msecs": 549.1809844970703, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 1265.1340961456299, - "thread": 140487175731008, + "relativeCreated": 1242.919921875, + "thread": 140534768363328, "threadName": "MainThread" } ], - "msecs": 372.79391288757324, + "msecs": 549.2589473724365, "msg": "Return value of send method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 1265.1948928833008, - "thread": 140487175731008, + "relativeCreated": 1242.9978847503662, + "thread": 140534768363328, "threadName": "MainThread", - "time_consumption": 6.079673767089844e-05 + "time_consumption": 7.796287536621094e-05 }, { "args": [ "0", "" ], - "asctime": "2020-01-29 07:23:08,372", - "created": 1580278988.372981, + "asctime": "2020-12-21 22:32:50,549", + "created": 1608586370.549519, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -8993,8 +9053,8 @@ "0", "" ], - "asctime": "2020-01-29 07:23:08,372", - "created": 1580278988.37288, + "asctime": "2020-12-21 22:32:50,549", + "created": 1608586370.549379, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -9004,14 +9064,14 @@ "lineno": 22, "message": "Result (Request Status (Okay) transfered via pure_json_protocol): 0 ()", "module": "test", - "msecs": 372.8799819946289, + "msecs": 549.3791103363037, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 1265.2809619903564, - "thread": 140487175731008, + "relativeCreated": 1243.1180477142334, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -9020,8 +9080,8 @@ "0", "" ], - "asctime": "2020-01-29 07:23:08,372", - "created": 1580278988.372933, + "asctime": "2020-12-21 22:32:50,549", + "created": 1608586370.54945, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -9031,35 +9091,35 @@ "lineno": 26, "message": "Expectation (Request Status (Okay) transfered via pure_json_protocol): result = 0 ()", "module": "test", - "msecs": 372.93291091918945, + "msecs": 549.4499206542969, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 1265.333890914917, - "thread": 140487175731008, + "relativeCreated": 1243.1888580322266, + "thread": 140534768363328, "threadName": "MainThread" } ], - "msecs": 372.98107147216797, + "msecs": 549.5190620422363, "msg": "Request Status (Okay) transfered via pure_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 1265.3820514678955, - "thread": 140487175731008, + "relativeCreated": 1243.257999420166, + "thread": 140534768363328, "threadName": "MainThread", - "time_consumption": 4.8160552978515625e-05 + "time_consumption": 6.914138793945312e-05 }, { "args": [ "{u'test': u'test'}", "" ], - "asctime": "2020-01-29 07:23:08,373", - "created": 1580278988.373165, + "asctime": "2020-12-21 22:32:50,549", + "created": 1608586370.54981, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -9076,8 +9136,8 @@ "{ u'test': u'test' }", "" ], - "asctime": "2020-01-29 07:23:08,373", - "created": 1580278988.373061, + "asctime": "2020-12-21 22:32:50,549", + "created": 1608586370.549644, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -9087,14 +9147,14 @@ "lineno": 22, "message": "Result (Request Data transfered via pure_json_protocol): { u'test': u'test' } ()", "module": "test", - "msecs": 373.060941696167, + "msecs": 549.6439933776855, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 1265.4619216918945, - "thread": 140487175731008, + "relativeCreated": 1243.3829307556152, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -9103,8 +9163,8 @@ "{ u'test': u'test' }", "" ], - "asctime": "2020-01-29 07:23:08,373", - "created": 1580278988.373107, + "asctime": "2020-12-21 22:32:50,549", + "created": 1608586370.549716, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -9114,35 +9174,35 @@ "lineno": 26, "message": "Expectation (Request Data transfered via pure_json_protocol): result = { u'test': u'test' } ()", "module": "test", - "msecs": 373.1069564819336, + "msecs": 549.7159957885742, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 1265.5079364776611, - "thread": 140487175731008, + "relativeCreated": 1243.454933166504, + "thread": 140534768363328, "threadName": "MainThread" } ], - "msecs": 373.1648921966553, + "msecs": 549.8099327087402, "msg": "Request Data transfered via pure_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 1265.5658721923828, - "thread": 140487175731008, + "relativeCreated": 1243.54887008667, + "thread": 140534768363328, "threadName": "MainThread", - "time_consumption": 5.793571472167969e-05 + "time_consumption": 9.393692016601562e-05 }, { "args": [ "5", "" ], - "asctime": "2020-01-29 07:23:08,373", - "created": 1580278988.373348, + "asctime": "2020-12-21 22:32:50,550", + "created": 1608586370.550062, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -9159,8 +9219,8 @@ "5", "" ], - "asctime": "2020-01-29 07:23:08,373", - "created": 1580278988.373253, + "asctime": "2020-12-21 22:32:50,549", + "created": 1608586370.549922, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -9170,14 +9230,14 @@ "lineno": 22, "message": "Result (Response Status (Operation not permitted) transfered via pure_json_protocol): 5 ()", "module": "test", - "msecs": 373.25310707092285, + "msecs": 549.921989440918, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 1265.6540870666504, - "thread": 140487175731008, + "relativeCreated": 1243.6609268188477, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -9186,8 +9246,8 @@ "5", "" ], - "asctime": "2020-01-29 07:23:08,373", - "created": 1580278988.373302, + "asctime": "2020-12-21 22:32:50,549", + "created": 1608586370.549994, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -9197,35 +9257,35 @@ "lineno": 26, "message": "Expectation (Response Status (Operation not permitted) transfered via pure_json_protocol): result = 5 ()", "module": "test", - "msecs": 373.3019828796387, + "msecs": 549.9939918518066, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 1265.7029628753662, - "thread": 140487175731008, + "relativeCreated": 1243.7329292297363, + "thread": 140534768363328, "threadName": "MainThread" } ], - "msecs": 373.3479976654053, + "msecs": 550.0619411468506, "msg": "Response Status (Operation not permitted) transfered via pure_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 1265.7489776611328, - "thread": 140487175731008, + "relativeCreated": 1243.8008785247803, + "thread": 140534768363328, "threadName": "MainThread", - "time_consumption": 4.601478576660156e-05 + "time_consumption": 6.794929504394531e-05 }, { "args": [ "[1, 3, u's']", "" ], - "asctime": "2020-01-29 07:23:08,373", - "created": 1580278988.373526, + "asctime": "2020-12-21 22:32:50,550", + "created": 1608586370.550355, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -9242,8 +9302,8 @@ "[ 1, 3, u's' ]", "" ], - "asctime": "2020-01-29 07:23:08,373", - "created": 1580278988.373424, + "asctime": "2020-12-21 22:32:50,550", + "created": 1608586370.550181, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -9253,14 +9313,14 @@ "lineno": 22, "message": "Result (Response Data transfered via pure_json_protocol): [ 1, 3, u's' ] ()", "module": "test", - "msecs": 373.4240531921387, + "msecs": 550.1809120178223, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 1265.8250331878662, - "thread": 140487175731008, + "relativeCreated": 1243.919849395752, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -9269,8 +9329,8 @@ "[ 1, 3, u's' ]", "" ], - "asctime": "2020-01-29 07:23:08,373", - "created": 1580278988.373468, + "asctime": "2020-12-21 22:32:50,550", + "created": 1608586370.550256, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -9280,35 +9340,35 @@ "lineno": 26, "message": "Expectation (Response Data transfered via pure_json_protocol): result = [ 1, 3, u's' ] ()", "module": "test", - "msecs": 373.46792221069336, + "msecs": 550.2560138702393, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 1265.868902206421, - "thread": 140487175731008, + "relativeCreated": 1243.994951248169, + "thread": 140534768363328, "threadName": "MainThread" } ], - "msecs": 373.52609634399414, + "msecs": 550.3549575805664, "msg": "Response Data transfered via pure_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 1265.9270763397217, - "thread": 140487175731008, + "relativeCreated": 1244.093894958496, + "thread": 140534768363328, "threadName": "MainThread", - "time_consumption": 5.817413330078125e-05 + "time_consumption": 9.894371032714844e-05 }, { "args": [ "None", "" ], - "asctime": "2020-01-29 07:23:08,474", - "created": 1580278988.474219, + "asctime": "2020-12-21 22:32:50,651", + "created": 1608586370.65158, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -9326,25 +9386,25 @@ "11", "45054" ], - "asctime": "2020-01-29 07:23:08,473", - "created": 1580278988.473787, + "asctime": "2020-12-21 22:32:50,650", + "created": 1608586370.650822, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 309, + "lineno": 327, "message": "SJP: TIMEOUT (0.1s): Requested data (service_id: 11; data_id: 45054) not in buffer.", "module": "__init__", - "msecs": 473.7870693206787, + "msecs": 650.8219242095947, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 1366.1880493164062, - "thread": 140487175731008, + "relativeCreated": 1344.5608615875244, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -9353,8 +9413,8 @@ "None", "" ], - "asctime": "2020-01-29 07:23:08,473", - "created": 1580278988.473989, + "asctime": "2020-12-21 22:32:50,651", + "created": 1608586370.65118, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -9364,14 +9424,14 @@ "lineno": 22, "message": "Result (Return Value (request instance) for pure_json_protocol.receive with data data_id 0xaffe): None ()", "module": "test", - "msecs": 473.98900985717773, + "msecs": 651.1800289154053, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 1366.3899898529053, - "thread": 140487175731008, + "relativeCreated": 1344.918966293335, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -9380,8 +9440,8 @@ "None", "" ], - "asctime": "2020-01-29 07:23:08,474", - "created": 1580278988.474115, + "asctime": "2020-12-21 22:32:50,651", + "created": 1608586370.651375, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -9391,35 +9451,35 @@ "lineno": 26, "message": "Expectation (Return Value (request instance) for pure_json_protocol.receive with data data_id 0xaffe): result = None ()", "module": "test", - "msecs": 474.11489486694336, + "msecs": 651.3750553131104, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 1366.515874862671, - "thread": 140487175731008, + "relativeCreated": 1345.11399269104, + "thread": 140534768363328, "threadName": "MainThread" } ], - "msecs": 474.21908378601074, + "msecs": 651.5800952911377, "msg": "Return Value (request instance) for pure_json_protocol.receive with data data_id 0xaffe is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 1366.6200637817383, - "thread": 140487175731008, + "relativeCreated": 1345.3190326690674, + "thread": 140534768363328, "threadName": "MainThread", - "time_consumption": 0.00010418891906738281 + "time_consumption": 0.00020503997802734375 }, { "args": [ "None", "" ], - "asctime": "2020-01-29 07:23:08,574", - "created": 1580278988.574864, + "asctime": "2020-12-21 22:32:50,753", + "created": 1608586370.753045, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -9437,25 +9497,25 @@ "10", "45054" ], - "asctime": "2020-01-29 07:23:08,574", - "created": 1580278988.574564, + "asctime": "2020-12-21 22:32:50,752", + "created": 1608586370.752271, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 309, + "lineno": 327, "message": "SJP: TIMEOUT (0.1s): Requested data (service_id: 10; data_id: 45054) not in buffer.", "module": "__init__", - "msecs": 574.5639801025391, + "msecs": 752.2709369659424, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 1466.9649600982666, - "thread": 140487175731008, + "relativeCreated": 1446.009874343872, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -9464,8 +9524,8 @@ "None", "" ], - "asctime": "2020-01-29 07:23:08,574", - "created": 1580278988.574711, + "asctime": "2020-12-21 22:32:50,752", + "created": 1608586370.752635, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -9475,14 +9535,14 @@ "lineno": 22, "message": "Result (Return Value (response instance) for pure_json_protocol.receive with data data_id 0xaffe): None ()", "module": "test", - "msecs": 574.7110843658447, + "msecs": 752.6350021362305, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 1467.1120643615723, - "thread": 140487175731008, + "relativeCreated": 1446.3739395141602, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -9491,8 +9551,8 @@ "None", "" ], - "asctime": "2020-01-29 07:23:08,574", - "created": 1580278988.574796, + "asctime": "2020-12-21 22:32:50,752", + "created": 1608586370.752863, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -9502,39 +9562,39 @@ "lineno": 26, "message": "Expectation (Return Value (response instance) for pure_json_protocol.receive with data data_id 0xaffe): result = None ()", "module": "test", - "msecs": 574.7959613800049, + "msecs": 752.8629302978516, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 1467.1969413757324, - "thread": 140487175731008, + "relativeCreated": 1446.6018676757812, + "thread": 140534768363328, "threadName": "MainThread" } ], - "msecs": 574.8639106750488, + "msecs": 753.0450820922852, "msg": "Return Value (response instance) for pure_json_protocol.receive with data data_id 0xaffe is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 1467.2648906707764, - "thread": 140487175731008, + "relativeCreated": 1446.7840194702148, + "thread": 140534768363328, "threadName": "MainThread", - "time_consumption": 6.794929504394531e-05 + "time_consumption": 0.00018215179443359375 } ], - "thread": 140487175731008, + "thread": 140534768363328, "threadName": "MainThread", - "time_consumption": 0.7041988372802734, - "time_finished": "2020-01-29 07:23:08,574", - "time_start": "2020-01-29 07:23:07,870" + "time_consumption": 0.7071809768676758, + "time_finished": "2020-12-21 22:32:50,753", + "time_start": "2020-12-21 22:32:50,045" }, "socket_protocol.pure_json_protocol: Timeout measurement for authentification and send method.": { "args": null, - "asctime": "2020-01-29 07:23:14,516", - "created": 1580278994.516435, + "asctime": "2020-12-21 22:32:56,727", + "created": 1608586376.727479, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -9545,23 +9605,23 @@ "message": "socket_protocol.pure_json_protocol: Timeout measurement for authentification and send method.", "module": "__init__", "moduleLogger": [], - "msecs": 516.434907913208, + "msecs": 727.4789810180664, "msg": "socket_protocol.pure_json_protocol: Timeout measurement for authentification and send method.", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 7408.835887908936, + "relativeCreated": 7421.217918395996, "testcaseLogger": [ { "args": [ - "0.20073795318603516", + "0.20090699195861816", "0.2", "0.22000000000000003", "" ], - "asctime": "2020-01-29 07:23:14,718", - "created": 1580278994.718291, + "asctime": "2020-12-21 22:32:56,930", + "created": 1608586376.930025, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -9569,132 +9629,132 @@ "levelname": "INFO", "levelno": 20, "lineno": 218, - "message": "Timeout for authentification is correct (Content 0.20073795318603516 in [0.2 ... 0.22000000000000003] and Type is ).", + "message": "Timeout for authentification is correct (Content 0.20090699195861816 in [0.2 ... 0.22000000000000003] and Type is ).", "module": "test", "moduleLogger": [ { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:14,516", - "created": 1580278994.516572, + "asctime": "2020-12-21 22:32:56,727", + "created": 1608586376.727661, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 295, + "lineno": 313, "message": "SJP: Cleaning up receive-buffer", "module": "__init__", - "msecs": 516.5719985961914, + "msecs": 727.6608943939209, "msg": "%s Cleaning up receive-buffer", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 7408.972978591919, - "thread": 140487175731008, + "relativeCreated": 7421.399831771851, + "thread": 140534768363328, "threadName": "MainThread" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:14,516", - "created": 1580278994.51678, + "asctime": "2020-12-21 22:32:56,727", + "created": 1608586376.727858, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 199, + "lineno": 217, "message": "SJP: Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "module": "__init__", - "msecs": 516.779899597168, + "msecs": 727.8580665588379, "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 7409.1808795928955, - "thread": 140487175731008, + "relativeCreated": 7421.597003936768, + "thread": 140534768363328, "threadName": "MainThread" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:14,516", - "created": 1580278994.516897, + "asctime": "2020-12-21 22:32:56,727", + "created": 1608586376.727974, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 295, + "lineno": 313, "message": "SJP: Cleaning up receive-buffer", "module": "__init__", - "msecs": 516.8969631195068, + "msecs": 727.9739379882812, "msg": "%s Cleaning up receive-buffer", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 7409.297943115234, - "thread": 140487175731008, + "relativeCreated": 7421.712875366211, + "thread": 140534768363328, "threadName": "MainThread" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:14,517", - "created": 1580278994.517046, + "asctime": "2020-12-21 22:32:56,728", + "created": 1608586376.728143, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 199, + "lineno": 217, "message": "SJP: Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "module": "__init__", - "msecs": 517.0459747314453, + "msecs": 728.1429767608643, "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 7409.446954727173, - "thread": 140487175731008, + "relativeCreated": 7421.881914138794, + "thread": 140534768363328, "threadName": "MainThread" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:14,517", - "created": 1580278994.517128, + "asctime": "2020-12-21 22:32:56,728", + "created": 1608586376.728247, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "authentificate", "levelname": "INFO", "levelno": 20, - "lineno": 378, + "lineno": 396, "message": "SJP: Requesting seed for authentification", "module": "__init__", - "msecs": 517.1279907226562, + "msecs": 728.2469272613525, "msg": "%s Requesting seed for authentification", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 7409.528970718384, - "thread": 140487175731008, + "relativeCreated": 7421.985864639282, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -9705,31 +9765,31 @@ 0, "None" ], - "asctime": "2020-01-29 07:23:14,517", - "created": 1580278994.517212, + "asctime": "2020-12-21 22:32:56,728", + "created": 1608586376.728332, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 334, + "lineno": 352, "message": "SJP: TX -> status: 0, service_id: 1, data_id: 0, data: \"None\"", "module": "__init__", - "msecs": 517.2119140625, + "msecs": 728.3320426940918, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 7409.6128940582275, - "thread": 140487175731008, + "relativeCreated": 7422.0709800720215, + "thread": 140534768363328, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-01-29 07:23:14,517", - "created": 1580278994.517468, + "asctime": "2020-12-21 22:32:56,728", + "created": 1608586376.728567, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -9739,24 +9799,24 @@ "lineno": 55, "message": "Send data: (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 2c 2d 2e 5d", "module": "test_helpers", - "msecs": 517.4679756164551, + "msecs": 728.5668849945068, "msg": "Send data: (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 2c 2d 2e 5d", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 7409.868955612183, - "thread": 140487175731008, + "relativeCreated": 7422.3058223724365, + "thread": 140534768363328, "threadName": "MainThread" }, { "args": [ "Timeout for authentification", - "0.20073795318603516", + "0.20090699195861816", "" ], - "asctime": "2020-01-29 07:23:14,717", - "created": 1580278994.717912, + "asctime": "2020-12-21 22:32:56,929", + "created": 1608586376.929325, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -9764,16 +9824,16 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 22, - "message": "Result (Timeout for authentification): 0.20073795318603516 ()", + "message": "Result (Timeout for authentification): 0.20090699195861816 ()", "module": "test", - "msecs": 717.911958694458, + "msecs": 929.3251037597656, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 7610.312938690186, - "thread": 140487175731008, + "relativeCreated": 7623.064041137695, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -9782,8 +9842,8 @@ "0.2", "0.22000000000000003" ], - "asctime": "2020-01-29 07:23:14,718", - "created": 1580278994.718079, + "asctime": "2020-12-21 22:32:56,929", + "created": 1608586376.929828, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -9793,37 +9853,37 @@ "lineno": 30, "message": "Expectation (Timeout for authentification): 0.2 <= result <= 0.22000000000000003", "module": "test", - "msecs": 718.0790901184082, + "msecs": 929.8279285430908, "msg": "Expectation (%s): %s <= result <= %s", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 7610.480070114136, - "thread": 140487175731008, + "relativeCreated": 7623.5668659210205, + "thread": 140534768363328, "threadName": "MainThread" } ], - "msecs": 718.2910442352295, + "msecs": 930.0251007080078, "msg": "Timeout for authentification is correct (Content %s in [%s ... %s] and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 7610.692024230957, - "thread": 140487175731008, + "relativeCreated": 7623.7640380859375, + "thread": 140534768363328, "threadName": "MainThread", - "time_consumption": 0.00021195411682128906 + "time_consumption": 0.0001971721649169922 }, { "args": [ - "0.5015730857849121", + "0.5018911361694336", "0.5", "0.55", "" ], - "asctime": "2020-01-29 07:23:15,220", - "created": 1580278995.220632, + "asctime": "2020-12-21 22:32:57,432", + "created": 1608586377.43245, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -9831,32 +9891,32 @@ "levelname": "INFO", "levelno": 20, "lineno": 218, - "message": "Timeout for authentification is correct (Content 0.5015730857849121 in [0.5 ... 0.55] and Type is ).", + "message": "Timeout for authentification is correct (Content 0.5018911361694336 in [0.5 ... 0.55] and Type is ).", "module": "test", "moduleLogger": [ { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:14,718", - "created": 1580278994.718495, + "asctime": "2020-12-21 22:32:56,930", + "created": 1608586376.930357, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "authentificate", "levelname": "INFO", "levelno": 20, - "lineno": 378, + "lineno": 396, "message": "SJP: Requesting seed for authentification", "module": "__init__", - "msecs": 718.4948921203613, + "msecs": 930.3569793701172, "msg": "%s Requesting seed for authentification", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 7610.895872116089, - "thread": 140487175731008, + "relativeCreated": 7624.095916748047, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -9867,31 +9927,31 @@ 0, "None" ], - "asctime": "2020-01-29 07:23:14,718", - "created": 1580278994.7186, + "asctime": "2020-12-21 22:32:56,930", + "created": 1608586376.930521, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 334, + "lineno": 352, "message": "SJP: TX -> status: 0, service_id: 1, data_id: 0, data: \"None\"", "module": "__init__", - "msecs": 718.6000347137451, + "msecs": 930.5210113525391, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 7611.001014709473, - "thread": 140487175731008, + "relativeCreated": 7624.259948730469, + "thread": 140534768363328, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-01-29 07:23:14,718", - "created": 1580278994.718841, + "asctime": "2020-12-21 22:32:56,930", + "created": 1608586376.93085, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -9901,24 +9961,24 @@ "lineno": 55, "message": "Send data: (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 2c 2d 2e 5d", "module": "test_helpers", - "msecs": 718.8410758972168, + "msecs": 930.8500289916992, "msg": "Send data: (62): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 30 7d 2c 2d 2e 5d", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 7611.242055892944, - "thread": 140487175731008, + "relativeCreated": 7624.588966369629, + "thread": 140534768363328, "threadName": "MainThread" }, { "args": [ "Timeout for authentification", - "0.5015730857849121", + "0.5018911361694336", "" ], - "asctime": "2020-01-29 07:23:15,220", - "created": 1580278995.220141, + "asctime": "2020-12-21 22:32:57,432", + "created": 1608586377.43226, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -9926,16 +9986,16 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 22, - "message": "Result (Timeout for authentification): 0.5015730857849121 ()", + "message": "Result (Timeout for authentification): 0.5018911361694336 ()", "module": "test", - "msecs": 220.14093399047852, + "msecs": 432.26003646850586, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 8112.541913986206, - "thread": 140487175731008, + "relativeCreated": 8125.998973846436, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -9944,8 +10004,8 @@ "0.5", "0.55" ], - "asctime": "2020-01-29 07:23:15,220", - "created": 1580278995.220432, + "asctime": "2020-12-21 22:32:57,432", + "created": 1608586377.432392, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -9955,37 +10015,37 @@ "lineno": 30, "message": "Expectation (Timeout for authentification): 0.5 <= result <= 0.55", "module": "test", - "msecs": 220.43204307556152, + "msecs": 432.391881942749, "msg": "Expectation (%s): %s <= result <= %s", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 8112.833023071289, - "thread": 140487175731008, + "relativeCreated": 8126.130819320679, + "thread": 140534768363328, "threadName": "MainThread" } ], - "msecs": 220.63207626342773, + "msecs": 432.4500560760498, "msg": "Timeout for authentification is correct (Content %s in [%s ... %s] and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 8113.033056259155, - "thread": 140487175731008, + "relativeCreated": 8126.1889934539795, + "thread": 140534768363328, "threadName": "MainThread", - "time_consumption": 0.00020003318786621094 + "time_consumption": 5.817413330078125e-05 }, { "args": [ - "0.20078516006469727", + "0.20077204704284668", "0.2", "0.22000000000000003", "" ], - "asctime": "2020-01-29 07:23:15,422", - "created": 1580278995.42212, + "asctime": "2020-12-21 22:32:57,633", + "created": 1608586377.633755, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -9993,7 +10053,7 @@ "levelname": "INFO", "levelno": 20, "lineno": 218, - "message": "Timeout for send method is correct (Content 0.20078516006469727 in [0.2 ... 0.22000000000000003] and Type is ).", + "message": "Timeout for send method is correct (Content 0.20077204704284668 in [0.2 ... 0.22000000000000003] and Type is ).", "module": "test", "moduleLogger": [ { @@ -10003,35 +10063,35 @@ "30", "0" ], - "asctime": "2020-01-29 07:23:15,421", - "created": 1580278995.421434, + "asctime": "2020-12-21 22:32:57,633", + "created": 1608586377.633052, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 309, + "lineno": 327, "message": "SJP: TIMEOUT (0.2s): Requested data (service_id: 30; data_id: 0) not in buffer.", "module": "__init__", - "msecs": 421.4339256286621, + "msecs": 633.0521106719971, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 8313.83490562439, - "thread": 140487175731008, + "relativeCreated": 8326.791048049927, + "thread": 140534768363328, "threadName": "MainThread" }, { "args": [ "Timeout for send method", - "0.20078516006469727", + "0.20077204704284668", "" ], - "asctime": "2020-01-29 07:23:15,421", - "created": 1580278995.421752, + "asctime": "2020-12-21 22:32:57,633", + "created": 1608586377.633384, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -10039,16 +10099,16 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 22, - "message": "Result (Timeout for send method): 0.20078516006469727 ()", + "message": "Result (Timeout for send method): 0.20077204704284668 ()", "module": "test", - "msecs": 421.7519760131836, + "msecs": 633.3839893341064, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 8314.152956008911, - "thread": 140487175731008, + "relativeCreated": 8327.122926712036, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -10057,8 +10117,8 @@ "0.2", "0.22000000000000003" ], - "asctime": "2020-01-29 07:23:15,421", - "created": 1580278995.42194, + "asctime": "2020-12-21 22:32:57,633", + "created": 1608586377.633563, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -10068,37 +10128,37 @@ "lineno": 30, "message": "Expectation (Timeout for send method): 0.2 <= result <= 0.22000000000000003", "module": "test", - "msecs": 421.9400882720947, + "msecs": 633.5630416870117, "msg": "Expectation (%s): %s <= result <= %s", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 8314.341068267822, - "thread": 140487175731008, + "relativeCreated": 8327.301979064941, + "thread": 140534768363328, "threadName": "MainThread" } ], - "msecs": 422.1200942993164, + "msecs": 633.7549686431885, "msg": "Timeout for send method is correct (Content %s in [%s ... %s] and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 8314.521074295044, - "thread": 140487175731008, + "relativeCreated": 8327.493906021118, + "thread": 140534768363328, "threadName": "MainThread", - "time_consumption": 0.0001800060272216797 + "time_consumption": 0.0001919269561767578 }, { "args": [ - "0.501331090927124", + "0.5015850067138672", "0.5", "0.55", "" ], - "asctime": "2020-01-29 07:23:15,924", - "created": 1580278995.924146, + "asctime": "2020-12-21 22:32:58,136", + "created": 1608586378.136024, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -10106,7 +10166,7 @@ "levelname": "INFO", "levelno": 20, "lineno": 218, - "message": "Timeout for send method is correct (Content 0.501331090927124 in [0.5 ... 0.55] and Type is ).", + "message": "Timeout for send method is correct (Content 0.5015850067138672 in [0.5 ... 0.55] and Type is ).", "module": "test", "moduleLogger": [ { @@ -10116,35 +10176,35 @@ "30", "0" ], - "asctime": "2020-01-29 07:23:15,923", - "created": 1580278995.923486, + "asctime": "2020-12-21 22:32:58,135", + "created": 1608586378.13529, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 309, + "lineno": 327, "message": "SJP: TIMEOUT (0.5s): Requested data (service_id: 30; data_id: 0) not in buffer.", "module": "__init__", - "msecs": 923.4859943389893, + "msecs": 135.28990745544434, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 8815.886974334717, - "thread": 140487175731008, + "relativeCreated": 8829.028844833374, + "thread": 140534768363328, "threadName": "MainThread" }, { "args": [ "Timeout for send method", - "0.501331090927124", + "0.5015850067138672", "" ], - "asctime": "2020-01-29 07:23:15,923", - "created": 1580278995.92376, + "asctime": "2020-12-21 22:32:58,135", + "created": 1608586378.135638, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -10152,16 +10212,16 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 22, - "message": "Result (Timeout for send method): 0.501331090927124 ()", + "message": "Result (Timeout for send method): 0.5015850067138672 ()", "module": "test", - "msecs": 923.759937286377, + "msecs": 135.63799858093262, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 8816.160917282104, - "thread": 140487175731008, + "relativeCreated": 8829.376935958862, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -10170,8 +10230,8 @@ "0.5", "0.55" ], - "asctime": "2020-01-29 07:23:15,923", - "created": 1580278995.923945, + "asctime": "2020-12-21 22:32:58,135", + "created": 1608586378.135837, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -10181,39 +10241,39 @@ "lineno": 30, "message": "Expectation (Timeout for send method): 0.5 <= result <= 0.55", "module": "test", - "msecs": 923.9449501037598, + "msecs": 135.83707809448242, "msg": "Expectation (%s): %s <= result <= %s", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 8816.345930099487, - "thread": 140487175731008, + "relativeCreated": 8829.576015472412, + "thread": 140534768363328, "threadName": "MainThread" } ], - "msecs": 924.1459369659424, + "msecs": 136.02399826049805, "msg": "Timeout for send method is correct (Content %s in [%s ... %s] and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 8816.54691696167, - "thread": 140487175731008, + "relativeCreated": 8829.762935638428, + "thread": 140534768363328, "threadName": "MainThread", - "time_consumption": 0.0002009868621826172 + "time_consumption": 0.000186920166015625 } ], - "thread": 140487175731008, + "thread": 140534768363328, "threadName": "MainThread", - "time_consumption": 1.4077110290527344, - "time_finished": "2020-01-29 07:23:15,924", - "time_start": "2020-01-29 07:23:14,516" + "time_consumption": 1.4085450172424316, + "time_finished": "2020-12-21 22:32:58,136", + "time_start": "2020-12-21 22:32:56,727" }, "socket_protocol.pure_json_protocol: Wildcard Callback registration for data_id.": { "args": null, - "asctime": "2020-01-29 07:23:11,392", - "created": 1580278991.392155, + "asctime": "2020-12-21 22:32:53,587", + "created": 1608586373.587175, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -10224,18 +10284,18 @@ "message": "socket_protocol.pure_json_protocol: Wildcard Callback registration for data_id.", "module": "__init__", "moduleLogger": [], - "msecs": 392.1549320220947, + "msecs": 587.1748924255371, "msg": "socket_protocol.pure_json_protocol: Wildcard Callback registration for data_id.", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 4284.555912017822, + "relativeCreated": 4280.913829803467, "testcaseLogger": [ { "args": [], - "asctime": "2020-01-29 07:23:11,893", - "created": 1580278991.893897, + "asctime": "2020-12-21 22:32:54,091", + "created": 1608586374.091652, "exc_info": null, "exc_text": null, "filename": "test_normal_operation.py", @@ -10250,100 +10310,100 @@ "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:11,392", - "created": 1580278991.392263, + "asctime": "2020-12-21 22:32:53,587", + "created": 1608586373.587508, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 295, + "lineno": 313, "message": "SJP: Cleaning up receive-buffer", "module": "__init__", - "msecs": 392.26293563842773, + "msecs": 587.507963180542, "msg": "%s Cleaning up receive-buffer", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 4284.663915634155, - "thread": 140487175731008, + "relativeCreated": 4281.246900558472, + "thread": 140534768363328, "threadName": "MainThread" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:11,392", - "created": 1580278991.392387, + "asctime": "2020-12-21 22:32:53,587", + "created": 1608586373.587886, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 199, + "lineno": 217, "message": "SJP: Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "module": "__init__", - "msecs": 392.38691329956055, + "msecs": 587.8860950469971, "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 4284.787893295288, - "thread": 140487175731008, + "relativeCreated": 4281.625032424927, + "thread": 140534768363328, "threadName": "MainThread" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:11,392", - "created": 1580278991.392454, + "asctime": "2020-12-21 22:32:53,588", + "created": 1608586373.588108, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 295, + "lineno": 313, "message": "SJP: Cleaning up receive-buffer", "module": "__init__", - "msecs": 392.4539089202881, + "msecs": 588.1080627441406, "msg": "%s Cleaning up receive-buffer", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 4284.854888916016, - "thread": 140487175731008, + "relativeCreated": 4281.84700012207, + "thread": 140534768363328, "threadName": "MainThread" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:11,392", - "created": 1580278991.392551, + "asctime": "2020-12-21 22:32:53,588", + "created": 1608586373.588432, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 199, + "lineno": 217, "message": "SJP: Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "module": "__init__", - "msecs": 392.5509452819824, + "msecs": 588.4320735931396, "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 4284.95192527771, - "thread": 140487175731008, + "relativeCreated": 4282.171010971069, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -10354,31 +10414,31 @@ 48879, "{u'test': u'test'}" ], - "asctime": "2020-01-29 07:23:11,392", - "created": 1580278991.39263, + "asctime": "2020-12-21 22:32:53,588", + "created": 1608586373.588694, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 334, + "lineno": 352, "message": "SJP: TX -> status: 0, service_id: 10, data_id: 48879, data: \"{u'test': u'test'}\"", "module": "__init__", - "msecs": 392.63010025024414, + "msecs": 588.6940956115723, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 4285.031080245972, - "thread": 140487175731008, + "relativeCreated": 4282.433032989502, + "thread": 140534768363328, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-01-29 07:23:11,392", - "created": 1580278991.392787, + "asctime": "2020-12-21 22:32:53,589", + "created": 1608586373.589274, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -10388,20 +10448,20 @@ "lineno": 55, "message": "Send data: (79): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 7d e8 e0 82 59", "module": "test_helpers", - "msecs": 392.78697967529297, + "msecs": 589.2739295959473, "msg": "Send data: (79): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 7d e8 e0 82 59", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 4285.1879596710205, - "thread": 140487175731008, + "relativeCreated": 4283.012866973877, + "thread": 140534768363328, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-01-29 07:23:11,543", - "created": 1580278991.543277, + "asctime": "2020-12-21 22:32:53,740", + "created": 1608586373.740585, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -10411,14 +10471,14 @@ "lineno": 66, "message": "Receive data (79): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 7d e8 e0 82 59", "module": "test_helpers", - "msecs": 543.2770252227783, + "msecs": 740.5850887298584, "msg": "Receive data (79): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 7d e8 e0 82 59", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 4435.678005218506, - "thread": 140487116760832, + "relativeCreated": 4434.324026107788, + "thread": 140534747334400, "threadName": "Thread-15" }, { @@ -10429,25 +10489,25 @@ "48879", "{u'test': u'test'}" ], - "asctime": "2020-01-29 07:23:11,543", - "created": 1580278991.543476, + "asctime": "2020-12-21 22:32:53,741", + "created": 1608586373.74109, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 247, + "lineno": 265, "message": "SJP: RX <- status: 0, service_id: 10, data_id: 48879, data: \"{u'test': u'test'}\"", "module": "__init__", - "msecs": 543.4761047363281, + "msecs": 741.0900592803955, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 4435.877084732056, - "thread": 140487116760832, + "relativeCreated": 4434.828996658325, + "thread": 140534747334400, "threadName": "Thread-15" }, { @@ -10455,25 +10515,25 @@ "SJP:", "response_data_method" ], - "asctime": "2020-01-29 07:23:11,543", - "created": 1580278991.543574, + "asctime": "2020-12-21 22:32:53,741", + "created": 1608586373.741322, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 264, + "lineno": 282, "message": "SJP: Executing callback response_data_method to process received data", "module": "__init__", - "msecs": 543.5740947723389, + "msecs": 741.3220405578613, "msg": "%s Executing callback %s to process received data", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 4435.975074768066, - "thread": 140487116760832, + "relativeCreated": 4435.060977935791, + "thread": 140534747334400, "threadName": "Thread-15" }, { @@ -10484,31 +10544,31 @@ 48879, "[1, 3, u's']" ], - "asctime": "2020-01-29 07:23:11,543", - "created": 1580278991.543652, + "asctime": "2020-12-21 22:32:53,741", + "created": 1608586373.741524, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 334, + "lineno": 352, "message": "SJP: TX -> status: 5, service_id: 11, data_id: 48879, data: \"[1, 3, u's']\"", "module": "__init__", - "msecs": 543.6520576477051, + "msecs": 741.5239810943604, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 4436.053037643433, - "thread": 140487116760832, + "relativeCreated": 4435.26291847229, + "thread": 140534747334400, "threadName": "Thread-15" }, { "args": [], - "asctime": "2020-01-29 07:23:11,543", - "created": 1580278991.543815, + "asctime": "2020-12-21 22:32:53,742", + "created": 1608586373.742017, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -10518,20 +10578,20 @@ "lineno": 55, "message": "Send data: (74): 7b 22 73 74 61 74 75 73 22 3a 20 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 5b 31 2c 20 33 2c 20 22 73 22 5d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 7d 0e 05 f1 49", "module": "test_helpers", - "msecs": 543.8148975372314, + "msecs": 742.0170307159424, "msg": "Send data: (74): 7b 22 73 74 61 74 75 73 22 3a 20 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 5b 31 2c 20 33 2c 20 22 73 22 5d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 7d 0e 05 f1 49", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 4436.215877532959, - "thread": 140487116760832, + "relativeCreated": 4435.755968093872, + "thread": 140534747334400, "threadName": "Thread-15" }, { "args": [], - "asctime": "2020-01-29 07:23:11,694", - "created": 1580278991.69425, + "asctime": "2020-12-21 22:32:53,893", + "created": 1608586373.893307, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -10541,14 +10601,14 @@ "lineno": 66, "message": "Receive data (74): 7b 22 73 74 61 74 75 73 22 3a 20 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 5b 31 2c 20 33 2c 20 22 73 22 5d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 7d 0e 05 f1 49", "module": "test_helpers", - "msecs": 694.2501068115234, + "msecs": 893.3069705963135, "msg": "Receive data (74): 7b 22 73 74 61 74 75 73 22 3a 20 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 5b 31 2c 20 33 2c 20 22 73 22 5d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 7d 0e 05 f1 49", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 4586.651086807251, - "thread": 140487038072576, + "relativeCreated": 4587.045907974243, + "thread": 140534738941696, "threadName": "Thread-16" }, { @@ -10559,25 +10619,25 @@ "48879", "[1, 3, u's']" ], - "asctime": "2020-01-29 07:23:11,694", - "created": 1580278991.694436, + "asctime": "2020-12-21 22:32:53,893", + "created": 1608586373.893776, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 247, + "lineno": 265, "message": "SJP: RX <- status: 5, service_id: 11, data_id: 48879, data: \"[1, 3, u's']\"", "module": "__init__", - "msecs": 694.4360733032227, + "msecs": 893.7759399414062, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 4586.83705329895, - "thread": 140487038072576, + "relativeCreated": 4587.514877319336, + "thread": 140534738941696, "threadName": "Thread-16" }, { @@ -10585,71 +10645,71 @@ "SJP:", "Operation not permitted" ], - "asctime": "2020-01-29 07:23:11,694", - "created": 1580278991.694553, + "asctime": "2020-12-21 22:32:53,894", + "created": 1608586373.89406, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "WARNING", "levelno": 30, - "lineno": 274, + "lineno": 292, "message": "SJP: Received message has a peculiar status: Operation not permitted", "module": "__init__", - "msecs": 694.5528984069824, + "msecs": 894.0598964691162, "msg": "%s Received message has a peculiar status: %s", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 4586.95387840271, - "thread": 140487038072576, + "relativeCreated": 4587.798833847046, + "thread": 140534738941696, "threadName": "Thread-16" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:11,694", - "created": 1580278991.694628, + "asctime": "2020-12-21 22:32:53,894", + "created": 1608586373.89428, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 292, + "lineno": 310, "message": "SJP: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 694.6280002593994, + "msecs": 894.279956817627, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 4587.028980255127, - "thread": 140487038072576, + "relativeCreated": 4588.018894195557, + "thread": 140534738941696, "threadName": "Thread-16" } ], - "msecs": 893.8970565795898, + "msecs": 91.65191650390625, "msg": "Send and received data by pure_json_protocol. Wildcard callback registerd for .", "name": "__tLogger__", "pathname": "src/tests/test_normal_operation.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 4786.298036575317, - "thread": 140487175731008, + "relativeCreated": 4785.390853881836, + "thread": 140534768363328, "threadName": "MainThread", - "time_consumption": 0.19926905632019043 + "time_consumption": 0.1973719596862793 }, { "args": [ "True", "" ], - "asctime": "2020-01-29 07:23:11,894", - "created": 1580278991.894263, + "asctime": "2020-12-21 22:32:54,092", + "created": 1608586374.092538, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -10666,8 +10726,8 @@ "True", "" ], - "asctime": "2020-01-29 07:23:11,894", - "created": 1580278991.894114, + "asctime": "2020-12-21 22:32:54,092", + "created": 1608586374.092162, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -10677,14 +10737,14 @@ "lineno": 22, "message": "Result (Return value of send method): True ()", "module": "test", - "msecs": 894.1140174865723, + "msecs": 92.16189384460449, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 4786.5149974823, - "thread": 140487175731008, + "relativeCreated": 4785.900831222534, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -10693,8 +10753,8 @@ "True", "" ], - "asctime": "2020-01-29 07:23:11,894", - "created": 1580278991.894198, + "asctime": "2020-12-21 22:32:54,092", + "created": 1608586374.092363, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -10704,35 +10764,35 @@ "lineno": 26, "message": "Expectation (Return value of send method): result = True ()", "module": "test", - "msecs": 894.197940826416, + "msecs": 92.36311912536621, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 4786.598920822144, - "thread": 140487175731008, + "relativeCreated": 4786.102056503296, + "thread": 140534768363328, "threadName": "MainThread" } ], - "msecs": 894.2630290985107, + "msecs": 92.53811836242676, "msg": "Return value of send method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 4786.664009094238, - "thread": 140487175731008, + "relativeCreated": 4786.277055740356, + "thread": 140534768363328, "threadName": "MainThread", - "time_consumption": 6.508827209472656e-05 + "time_consumption": 0.00017499923706054688 }, { "args": [ "0", "" ], - "asctime": "2020-01-29 07:23:11,894", - "created": 1580278991.894463, + "asctime": "2020-12-21 22:32:54,093", + "created": 1608586374.093175, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -10749,8 +10809,8 @@ "0", "" ], - "asctime": "2020-01-29 07:23:11,894", - "created": 1580278991.894359, + "asctime": "2020-12-21 22:32:54,092", + "created": 1608586374.092853, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -10760,14 +10820,14 @@ "lineno": 22, "message": "Result (Request Status (Okay) transfered via pure_json_protocol): 0 ()", "module": "test", - "msecs": 894.3591117858887, + "msecs": 92.85306930541992, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 4786.760091781616, - "thread": 140487175731008, + "relativeCreated": 4786.59200668335, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -10776,8 +10836,8 @@ "0", "" ], - "asctime": "2020-01-29 07:23:11,894", - "created": 1580278991.894413, + "asctime": "2020-12-21 22:32:54,093", + "created": 1608586374.09302, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -10787,35 +10847,35 @@ "lineno": 26, "message": "Expectation (Request Status (Okay) transfered via pure_json_protocol): result = 0 ()", "module": "test", - "msecs": 894.4129943847656, + "msecs": 93.01996231079102, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 4786.813974380493, - "thread": 140487175731008, + "relativeCreated": 4786.758899688721, + "thread": 140534768363328, "threadName": "MainThread" } ], - "msecs": 894.463062286377, + "msecs": 93.17493438720703, "msg": "Request Status (Okay) transfered via pure_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 4786.8640422821045, - "thread": 140487175731008, + "relativeCreated": 4786.913871765137, + "thread": 140534768363328, "threadName": "MainThread", - "time_consumption": 5.0067901611328125e-05 + "time_consumption": 0.00015497207641601562 }, { "args": [ "{u'test': u'test'}", "" ], - "asctime": "2020-01-29 07:23:11,894", - "created": 1580278991.894657, + "asctime": "2020-12-21 22:32:54,093", + "created": 1608586374.093803, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -10832,8 +10892,8 @@ "{ u'test': u'test' }", "" ], - "asctime": "2020-01-29 07:23:11,894", - "created": 1580278991.894548, + "asctime": "2020-12-21 22:32:54,093", + "created": 1608586374.093439, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -10843,14 +10903,14 @@ "lineno": 22, "message": "Result (Request Data transfered via pure_json_protocol): { u'test': u'test' } ()", "module": "test", - "msecs": 894.5479393005371, + "msecs": 93.43910217285156, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 4786.948919296265, - "thread": 140487175731008, + "relativeCreated": 4787.178039550781, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -10859,8 +10919,8 @@ "{ u'test': u'test' }", "" ], - "asctime": "2020-01-29 07:23:11,894", - "created": 1580278991.894598, + "asctime": "2020-12-21 22:32:54,093", + "created": 1608586374.093598, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -10870,35 +10930,35 @@ "lineno": 26, "message": "Expectation (Request Data transfered via pure_json_protocol): result = { u'test': u'test' } ()", "module": "test", - "msecs": 894.5980072021484, + "msecs": 93.5978889465332, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 4786.998987197876, - "thread": 140487175731008, + "relativeCreated": 4787.336826324463, + "thread": 140534768363328, "threadName": "MainThread" } ], - "msecs": 894.6568965911865, + "msecs": 93.80292892456055, "msg": "Request Data transfered via pure_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 4787.057876586914, - "thread": 140487175731008, + "relativeCreated": 4787.54186630249, + "thread": 140534768363328, "threadName": "MainThread", - "time_consumption": 5.888938903808594e-05 + "time_consumption": 0.00020503997802734375 }, { "args": [ "5", "" ], - "asctime": "2020-01-29 07:23:11,894", - "created": 1580278991.894822, + "asctime": "2020-12-21 22:32:54,094", + "created": 1608586374.094372, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -10915,8 +10975,8 @@ "5", "" ], - "asctime": "2020-01-29 07:23:11,894", - "created": 1580278991.894735, + "asctime": "2020-12-21 22:32:54,094", + "created": 1608586374.094051, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -10926,14 +10986,14 @@ "lineno": 22, "message": "Result (Response Status (Operation not permitted) transfered via pure_json_protocol): 5 ()", "module": "test", - "msecs": 894.7350978851318, + "msecs": 94.05088424682617, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 4787.136077880859, - "thread": 140487175731008, + "relativeCreated": 4787.789821624756, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -10942,8 +11002,8 @@ "5", "" ], - "asctime": "2020-01-29 07:23:11,894", - "created": 1580278991.894779, + "asctime": "2020-12-21 22:32:54,094", + "created": 1608586374.094201, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -10953,35 +11013,35 @@ "lineno": 26, "message": "Expectation (Response Status (Operation not permitted) transfered via pure_json_protocol): result = 5 ()", "module": "test", - "msecs": 894.7789669036865, + "msecs": 94.20108795166016, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 4787.179946899414, - "thread": 140487175731008, + "relativeCreated": 4787.94002532959, + "thread": 140534768363328, "threadName": "MainThread" } ], - "msecs": 894.8218822479248, + "msecs": 94.37203407287598, "msg": "Response Status (Operation not permitted) transfered via pure_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 4787.222862243652, - "thread": 140487175731008, + "relativeCreated": 4788.110971450806, + "thread": 140534768363328, "threadName": "MainThread", - "time_consumption": 4.291534423828125e-05 + "time_consumption": 0.0001709461212158203 }, { "args": [ "[1, 3, u's']", "" ], - "asctime": "2020-01-29 07:23:11,894", - "created": 1580278991.894998, + "asctime": "2020-12-21 22:32:54,095", + "created": 1608586374.095016, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -10998,8 +11058,8 @@ "[ 1, 3, u's' ]", "" ], - "asctime": "2020-01-29 07:23:11,894", - "created": 1580278991.894897, + "asctime": "2020-12-21 22:32:54,094", + "created": 1608586374.094645, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -11009,14 +11069,14 @@ "lineno": 22, "message": "Result (Response Data transfered via pure_json_protocol): [ 1, 3, u's' ] ()", "module": "test", - "msecs": 894.8969841003418, + "msecs": 94.64502334594727, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 4787.297964096069, - "thread": 140487175731008, + "relativeCreated": 4788.383960723877, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -11025,8 +11085,8 @@ "[ 1, 3, u's' ]", "" ], - "asctime": "2020-01-29 07:23:11,894", - "created": 1580278991.894941, + "asctime": "2020-12-21 22:32:54,094", + "created": 1608586374.094809, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -11036,35 +11096,35 @@ "lineno": 26, "message": "Expectation (Response Data transfered via pure_json_protocol): result = [ 1, 3, u's' ] ()", "module": "test", - "msecs": 894.9410915374756, + "msecs": 94.80905532836914, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 4787.342071533203, - "thread": 140487175731008, + "relativeCreated": 4788.547992706299, + "thread": 140534768363328, "threadName": "MainThread" } ], - "msecs": 894.9980735778809, + "msecs": 95.0160026550293, "msg": "Response Data transfered via pure_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 4787.399053573608, - "thread": 140487175731008, + "relativeCreated": 4788.754940032959, + "thread": 140534768363328, "threadName": "MainThread", - "time_consumption": 5.698204040527344e-05 + "time_consumption": 0.00020694732666015625 }, { "args": [ "None", "" ], - "asctime": "2020-01-29 07:23:11,995", - "created": 1580278991.995575, + "asctime": "2020-12-21 22:32:54,196", + "created": 1608586374.19635, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -11082,25 +11142,25 @@ "11", "48879" ], - "asctime": "2020-01-29 07:23:11,995", - "created": 1580278991.995261, + "asctime": "2020-12-21 22:32:54,195", + "created": 1608586374.195572, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 309, + "lineno": 327, "message": "SJP: TIMEOUT (0.1s): Requested data (service_id: 11; data_id: 48879) not in buffer.", "module": "__init__", - "msecs": 995.2609539031982, + "msecs": 195.5718994140625, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 4887.661933898926, - "thread": 140487175731008, + "relativeCreated": 4889.310836791992, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -11109,8 +11169,8 @@ "None", "" ], - "asctime": "2020-01-29 07:23:11,995", - "created": 1580278991.995416, + "asctime": "2020-12-21 22:32:54,195", + "created": 1608586374.195904, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -11120,14 +11180,14 @@ "lineno": 22, "message": "Result (Return Value (request instance) for pure_json_protocol.receive with data data_id 0xbeef): None ()", "module": "test", - "msecs": 995.4159259796143, + "msecs": 195.90401649475098, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 4887.816905975342, - "thread": 140487175731008, + "relativeCreated": 4889.642953872681, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -11136,8 +11196,8 @@ "None", "" ], - "asctime": "2020-01-29 07:23:11,995", - "created": 1580278991.995508, + "asctime": "2020-12-21 22:32:54,196", + "created": 1608586374.196136, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -11147,35 +11207,35 @@ "lineno": 26, "message": "Expectation (Return Value (request instance) for pure_json_protocol.receive with data data_id 0xbeef): result = None ()", "module": "test", - "msecs": 995.5079555511475, + "msecs": 196.1359977722168, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 4887.908935546875, - "thread": 140487175731008, + "relativeCreated": 4889.8749351501465, + "thread": 140534768363328, "threadName": "MainThread" } ], - "msecs": 995.574951171875, + "msecs": 196.35009765625, "msg": "Return Value (request instance) for pure_json_protocol.receive with data data_id 0xbeef is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 4887.9759311676025, - "thread": 140487175731008, + "relativeCreated": 4890.08903503418, + "thread": 140534768363328, "threadName": "MainThread", - "time_consumption": 6.699562072753906e-05 + "time_consumption": 0.00021409988403320312 }, { "args": [ "None", "" ], - "asctime": "2020-01-29 07:23:12,096", - "created": 1580278992.096182, + "asctime": "2020-12-21 22:32:54,297", + "created": 1608586374.297795, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -11193,25 +11253,25 @@ "10", "48879" ], - "asctime": "2020-01-29 07:23:12,095", - "created": 1580278992.095871, + "asctime": "2020-12-21 22:32:54,297", + "created": 1608586374.297006, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 309, + "lineno": 327, "message": "SJP: TIMEOUT (0.1s): Requested data (service_id: 10; data_id: 48879) not in buffer.", "module": "__init__", - "msecs": 95.8709716796875, + "msecs": 297.00589179992676, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 4988.271951675415, - "thread": 140487175731008, + "relativeCreated": 4990.744829177856, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -11220,8 +11280,8 @@ "None", "" ], - "asctime": "2020-01-29 07:23:12,096", - "created": 1580278992.096026, + "asctime": "2020-12-21 22:32:54,297", + "created": 1608586374.297371, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -11231,14 +11291,14 @@ "lineno": 22, "message": "Result (Return Value (response instance) for pure_json_protocol.receive with data data_id 0xbeef): None ()", "module": "test", - "msecs": 96.02594375610352, + "msecs": 297.37091064453125, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 4988.426923751831, - "thread": 140487175731008, + "relativeCreated": 4991.109848022461, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -11247,8 +11307,8 @@ "None", "" ], - "asctime": "2020-01-29 07:23:12,096", - "created": 1580278992.096112, + "asctime": "2020-12-21 22:32:54,297", + "created": 1608586374.297613, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -11258,39 +11318,39 @@ "lineno": 26, "message": "Expectation (Return Value (response instance) for pure_json_protocol.receive with data data_id 0xbeef): result = None ()", "module": "test", - "msecs": 96.11201286315918, + "msecs": 297.61290550231934, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 4988.512992858887, - "thread": 140487175731008, + "relativeCreated": 4991.351842880249, + "thread": 140534768363328, "threadName": "MainThread" } ], - "msecs": 96.18210792541504, + "msecs": 297.79505729675293, "msg": "Return Value (response instance) for pure_json_protocol.receive with data data_id 0xbeef is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 4988.583087921143, - "thread": 140487175731008, + "relativeCreated": 4991.533994674683, + "thread": 140534768363328, "threadName": "MainThread", - "time_consumption": 7.009506225585938e-05 + "time_consumption": 0.00018215179443359375 } ], - "thread": 140487175731008, + "thread": 140534768363328, "threadName": "MainThread", - "time_consumption": 0.7040271759033203, - "time_finished": "2020-01-29 07:23:12,096", - "time_start": "2020-01-29 07:23:11,392" + "time_consumption": 0.7106201648712158, + "time_finished": "2020-12-21 22:32:54,297", + "time_start": "2020-12-21 22:32:53,587" }, "socket_protocol.pure_json_protocol: Wildcard Callback registration for service_id and data_id.": { "args": null, - "asctime": "2020-01-29 07:23:09,981", - "created": 1580278989.98133, + "asctime": "2020-12-21 22:32:52,168", + "created": 1608586372.168823, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -11301,18 +11361,18 @@ "message": "socket_protocol.pure_json_protocol: Wildcard Callback registration for service_id and data_id.", "module": "__init__", "moduleLogger": [], - "msecs": 981.3299179077148, + "msecs": 168.8230037689209, "msg": "socket_protocol.pure_json_protocol: Wildcard Callback registration for service_id and data_id.", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 2873.7308979034424, + "relativeCreated": 2862.5619411468506, "testcaseLogger": [ { "args": [], - "asctime": "2020-01-29 07:23:10,483", - "created": 1580278990.483213, + "asctime": "2020-12-21 22:32:52,672", + "created": 1608586372.672914, "exc_info": null, "exc_text": null, "filename": "test_normal_operation.py", @@ -11327,100 +11387,100 @@ "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:09,981", - "created": 1580278989.981456, + "asctime": "2020-12-21 22:32:52,169", + "created": 1608586372.169187, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 295, + "lineno": 313, "message": "SJP: Cleaning up receive-buffer", "module": "__init__", - "msecs": 981.4560413360596, + "msecs": 169.18706893920898, "msg": "%s Cleaning up receive-buffer", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 2873.857021331787, - "thread": 140487175731008, + "relativeCreated": 2862.9260063171387, + "thread": 140534768363328, "threadName": "MainThread" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:09,981", - "created": 1580278989.981596, + "asctime": "2020-12-21 22:32:52,169", + "created": 1608586372.169619, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 199, + "lineno": 217, "message": "SJP: Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "module": "__init__", - "msecs": 981.5959930419922, + "msecs": 169.61908340454102, "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 2873.9969730377197, - "thread": 140487175731008, + "relativeCreated": 2863.3580207824707, + "thread": 140534768363328, "threadName": "MainThread" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:09,981", - "created": 1580278989.981677, + "asctime": "2020-12-21 22:32:52,169", + "created": 1608586372.169844, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 295, + "lineno": 313, "message": "SJP: Cleaning up receive-buffer", "module": "__init__", - "msecs": 981.6770553588867, + "msecs": 169.8439121246338, "msg": "%s Cleaning up receive-buffer", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 2874.0780353546143, - "thread": 140487175731008, + "relativeCreated": 2863.5828495025635, + "thread": 140534768363328, "threadName": "MainThread" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:09,981", - "created": 1580278989.981789, + "asctime": "2020-12-21 22:32:52,170", + "created": 1608586372.170179, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 199, + "lineno": 217, "message": "SJP: Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "module": "__init__", - "msecs": 981.7891120910645, + "msecs": 170.17889022827148, "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 2874.190092086792, - "thread": 140487175731008, + "relativeCreated": 2863.917827606201, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -11431,31 +11491,31 @@ 48879, "{u'test': u'test'}" ], - "asctime": "2020-01-29 07:23:09,981", - "created": 1580278989.981879, + "asctime": "2020-12-21 22:32:52,170", + "created": 1608586372.170429, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 334, + "lineno": 352, "message": "SJP: TX -> status: 0, service_id: 10, data_id: 48879, data: \"{u'test': u'test'}\"", "module": "__init__", - "msecs": 981.8789958953857, + "msecs": 170.42899131774902, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 2874.2799758911133, - "thread": 140487175731008, + "relativeCreated": 2864.1679286956787, + "thread": 140534768363328, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-01-29 07:23:09,982", - "created": 1580278989.982056, + "asctime": "2020-12-21 22:32:52,170", + "created": 1608586372.170959, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -11465,20 +11525,20 @@ "lineno": 55, "message": "Send data: (79): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 7d e8 e0 82 59", "module": "test_helpers", - "msecs": 982.0559024810791, + "msecs": 170.9589958190918, "msg": "Send data: (79): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 7d e8 e0 82 59", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 2874.4568824768066, - "thread": 140487175731008, + "relativeCreated": 2864.6979331970215, + "thread": 140534768363328, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-01-29 07:23:10,132", - "created": 1580278990.132559, + "asctime": "2020-12-21 22:32:52,322", + "created": 1608586372.322128, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -11488,14 +11548,14 @@ "lineno": 66, "message": "Receive data (79): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 7d e8 e0 82 59", "module": "test_helpers", - "msecs": 132.55906105041504, + "msecs": 322.1280574798584, "msg": "Receive data (79): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 7d e8 e0 82 59", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 3024.9600410461426, - "thread": 140487116760832, + "relativeCreated": 3015.866994857788, + "thread": 140534747334400, "threadName": "Thread-11" }, { @@ -11506,25 +11566,25 @@ "48879", "{u'test': u'test'}" ], - "asctime": "2020-01-29 07:23:10,132", - "created": 1580278990.13273, + "asctime": "2020-12-21 22:32:52,322", + "created": 1608586372.322777, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 247, + "lineno": 265, "message": "SJP: RX <- status: 0, service_id: 10, data_id: 48879, data: \"{u'test': u'test'}\"", "module": "__init__", - "msecs": 132.73000717163086, + "msecs": 322.77703285217285, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 3025.1309871673584, - "thread": 140487116760832, + "relativeCreated": 3016.5159702301025, + "thread": 140534747334400, "threadName": "Thread-11" }, { @@ -11532,25 +11592,25 @@ "SJP:", "response_data_method" ], - "asctime": "2020-01-29 07:23:10,132", - "created": 1580278990.132805, + "asctime": "2020-12-21 22:32:52,323", + "created": 1608586372.323027, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 264, + "lineno": 282, "message": "SJP: Executing callback response_data_method to process received data", "module": "__init__", - "msecs": 132.80510902404785, + "msecs": 323.0268955230713, "msg": "%s Executing callback %s to process received data", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 3025.2060890197754, - "thread": 140487116760832, + "relativeCreated": 3016.765832901001, + "thread": 140534747334400, "threadName": "Thread-11" }, { @@ -11561,31 +11621,31 @@ 48879, "[1, 3, u's']" ], - "asctime": "2020-01-29 07:23:10,132", - "created": 1580278990.132862, + "asctime": "2020-12-21 22:32:52,323", + "created": 1608586372.323167, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 334, + "lineno": 352, "message": "SJP: TX -> status: 5, service_id: 11, data_id: 48879, data: \"[1, 3, u's']\"", "module": "__init__", - "msecs": 132.86209106445312, + "msecs": 323.167085647583, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 3025.2630710601807, - "thread": 140487116760832, + "relativeCreated": 3016.9060230255127, + "thread": 140534747334400, "threadName": "Thread-11" }, { "args": [], - "asctime": "2020-01-29 07:23:10,132", - "created": 1580278990.133, + "asctime": "2020-12-21 22:32:52,323", + "created": 1608586372.323501, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -11595,20 +11655,20 @@ "lineno": 55, "message": "Send data: (74): 7b 22 73 74 61 74 75 73 22 3a 20 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 5b 31 2c 20 33 2c 20 22 73 22 5d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 7d 0e 05 f1 49", "module": "test_helpers", - "msecs": 132.99989700317383, + "msecs": 323.5011100769043, "msg": "Send data: (74): 7b 22 73 74 61 74 75 73 22 3a 20 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 5b 31 2c 20 33 2c 20 22 73 22 5d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 7d 0e 05 f1 49", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 3025.4008769989014, - "thread": 140487116760832, + "relativeCreated": 3017.240047454834, + "thread": 140534747334400, "threadName": "Thread-11" }, { "args": [], - "asctime": "2020-01-29 07:23:10,283", - "created": 1580278990.283491, + "asctime": "2020-12-21 22:32:52,474", + "created": 1608586372.474705, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -11618,14 +11678,14 @@ "lineno": 66, "message": "Receive data (74): 7b 22 73 74 61 74 75 73 22 3a 20 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 5b 31 2c 20 33 2c 20 22 73 22 5d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 7d 0e 05 f1 49", "module": "test_helpers", - "msecs": 283.4908962249756, + "msecs": 474.7049808502197, "msg": "Receive data (74): 7b 22 73 74 61 74 75 73 22 3a 20 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 5b 31 2c 20 33 2c 20 22 73 22 5d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 7d 0e 05 f1 49", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 3175.891876220703, - "thread": 140487038072576, + "relativeCreated": 3168.4439182281494, + "thread": 140534738941696, "threadName": "Thread-12" }, { @@ -11636,25 +11696,25 @@ "48879", "[1, 3, u's']" ], - "asctime": "2020-01-29 07:23:10,283", - "created": 1580278990.283753, + "asctime": "2020-12-21 22:32:52,475", + "created": 1608586372.475013, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 247, + "lineno": 265, "message": "SJP: RX <- status: 5, service_id: 11, data_id: 48879, data: \"[1, 3, u's']\"", "module": "__init__", - "msecs": 283.7529182434082, + "msecs": 475.01301765441895, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 3176.1538982391357, - "thread": 140487038072576, + "relativeCreated": 3168.7519550323486, + "thread": 140534738941696, "threadName": "Thread-12" }, { @@ -11662,71 +11722,71 @@ "SJP:", "Operation not permitted" ], - "asctime": "2020-01-29 07:23:10,283", - "created": 1580278990.283927, + "asctime": "2020-12-21 22:32:52,475", + "created": 1608586372.475187, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "WARNING", "levelno": 30, - "lineno": 274, + "lineno": 292, "message": "SJP: Received message has a peculiar status: Operation not permitted", "module": "__init__", - "msecs": 283.92696380615234, + "msecs": 475.1870632171631, "msg": "%s Received message has a peculiar status: %s", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 3176.32794380188, - "thread": 140487038072576, + "relativeCreated": 3168.926000595093, + "thread": 140534738941696, "threadName": "Thread-12" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:10,284", - "created": 1580278990.284027, + "asctime": "2020-12-21 22:32:52,475", + "created": 1608586372.475322, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 292, + "lineno": 310, "message": "SJP: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 284.027099609375, + "msecs": 475.32200813293457, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 3176.4280796051025, - "thread": 140487038072576, + "relativeCreated": 3169.0609455108643, + "thread": 140534738941696, "threadName": "Thread-12" } ], - "msecs": 483.212947845459, + "msecs": 672.9140281677246, "msg": "Send and received data by pure_json_protocol. Wildcard callback registerd for service_id and data_id.", "name": "__tLogger__", "pathname": "src/tests/test_normal_operation.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 3375.6139278411865, - "thread": 140487175731008, + "relativeCreated": 3366.6529655456543, + "thread": 140534768363328, "threadName": "MainThread", - "time_consumption": 0.19918584823608398 + "time_consumption": 0.19759202003479004 }, { "args": [ "True", "" ], - "asctime": "2020-01-29 07:23:10,483", - "created": 1580278990.483718, + "asctime": "2020-12-21 22:32:52,673", + "created": 1608586372.67341, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -11743,8 +11803,8 @@ "True", "" ], - "asctime": "2020-01-29 07:23:10,483", - "created": 1580278990.483533, + "asctime": "2020-12-21 22:32:52,673", + "created": 1608586372.673214, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -11754,14 +11814,14 @@ "lineno": 22, "message": "Result (Return value of send method): True ()", "module": "test", - "msecs": 483.5329055786133, + "msecs": 673.2139587402344, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 3375.933885574341, - "thread": 140487175731008, + "relativeCreated": 3366.952896118164, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -11770,8 +11830,8 @@ "True", "" ], - "asctime": "2020-01-29 07:23:10,483", - "created": 1580278990.483635, + "asctime": "2020-12-21 22:32:52,673", + "created": 1608586372.673318, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -11781,35 +11841,35 @@ "lineno": 26, "message": "Expectation (Return value of send method): result = True ()", "module": "test", - "msecs": 483.63494873046875, + "msecs": 673.3179092407227, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 3376.0359287261963, - "thread": 140487175731008, + "relativeCreated": 3367.0568466186523, + "thread": 140534768363328, "threadName": "MainThread" } ], - "msecs": 483.7179183959961, + "msecs": 673.4099388122559, "msg": "Return value of send method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 3376.1188983917236, - "thread": 140487175731008, + "relativeCreated": 3367.1488761901855, + "thread": 140534768363328, "threadName": "MainThread", - "time_consumption": 8.296966552734375e-05 + "time_consumption": 9.202957153320312e-05 }, { "args": [ "0", "" ], - "asctime": "2020-01-29 07:23:10,483", - "created": 1580278990.483956, + "asctime": "2020-12-21 22:32:52,673", + "created": 1608586372.673737, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -11826,8 +11886,8 @@ "0", "" ], - "asctime": "2020-01-29 07:23:10,483", - "created": 1580278990.483833, + "asctime": "2020-12-21 22:32:52,673", + "created": 1608586372.673555, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -11837,14 +11897,14 @@ "lineno": 22, "message": "Result (Request Status (Okay) transfered via pure_json_protocol): 0 ()", "module": "test", - "msecs": 483.83307456970215, + "msecs": 673.5548973083496, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 3376.2340545654297, - "thread": 140487175731008, + "relativeCreated": 3367.2938346862793, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -11853,8 +11913,8 @@ "0", "" ], - "asctime": "2020-01-29 07:23:10,483", - "created": 1580278990.483898, + "asctime": "2020-12-21 22:32:52,673", + "created": 1608586372.673639, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -11864,35 +11924,35 @@ "lineno": 26, "message": "Expectation (Request Status (Okay) transfered via pure_json_protocol): result = 0 ()", "module": "test", - "msecs": 483.8979244232178, + "msecs": 673.6390590667725, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 3376.2989044189453, - "thread": 140487175731008, + "relativeCreated": 3367.377996444702, + "thread": 140534768363328, "threadName": "MainThread" } ], - "msecs": 483.95609855651855, + "msecs": 673.7370491027832, "msg": "Request Status (Okay) transfered via pure_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 3376.357078552246, - "thread": 140487175731008, + "relativeCreated": 3367.475986480713, + "thread": 140534768363328, "threadName": "MainThread", - "time_consumption": 5.817413330078125e-05 + "time_consumption": 9.799003601074219e-05 }, { "args": [ "{u'test': u'test'}", "" ], - "asctime": "2020-01-29 07:23:10,484", - "created": 1580278990.484176, + "asctime": "2020-12-21 22:32:52,674", + "created": 1608586372.674069, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -11909,8 +11969,8 @@ "{ u'test': u'test' }", "" ], - "asctime": "2020-01-29 07:23:10,484", - "created": 1580278990.484052, + "asctime": "2020-12-21 22:32:52,673", + "created": 1608586372.673877, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -11920,14 +11980,14 @@ "lineno": 22, "message": "Result (Request Data transfered via pure_json_protocol): { u'test': u'test' } ()", "module": "test", - "msecs": 484.0519428253174, + "msecs": 673.8770008087158, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 3376.452922821045, - "thread": 140487175731008, + "relativeCreated": 3367.6159381866455, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -11936,8 +11996,8 @@ "{ u'test': u'test' }", "" ], - "asctime": "2020-01-29 07:23:10,484", - "created": 1580278990.484109, + "asctime": "2020-12-21 22:32:52,673", + "created": 1608586372.673964, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -11947,35 +12007,35 @@ "lineno": 26, "message": "Expectation (Request Data transfered via pure_json_protocol): result = { u'test': u'test' } ()", "module": "test", - "msecs": 484.10892486572266, + "msecs": 673.9640235900879, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 3376.50990486145, - "thread": 140487175731008, + "relativeCreated": 3367.7029609680176, + "thread": 140534768363328, "threadName": "MainThread" } ], - "msecs": 484.1759204864502, + "msecs": 674.0689277648926, "msg": "Request Data transfered via pure_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 3376.5769004821777, - "thread": 140487175731008, + "relativeCreated": 3367.8078651428223, + "thread": 140534768363328, "threadName": "MainThread", - "time_consumption": 6.699562072753906e-05 + "time_consumption": 0.0001049041748046875 }, { "args": [ "5", "" ], - "asctime": "2020-01-29 07:23:10,485", - "created": 1580278990.485774, + "asctime": "2020-12-21 22:32:52,674", + "created": 1608586372.674367, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -11992,8 +12052,8 @@ "5", "" ], - "asctime": "2020-01-29 07:23:10,485", - "created": 1580278990.485633, + "asctime": "2020-12-21 22:32:52,674", + "created": 1608586372.674207, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -12003,14 +12063,14 @@ "lineno": 22, "message": "Result (Response Status (Operation not permitted) transfered via pure_json_protocol): 5 ()", "module": "test", - "msecs": 485.63289642333984, + "msecs": 674.2069721221924, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 3378.0338764190674, - "thread": 140487175731008, + "relativeCreated": 3367.945909500122, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -12019,8 +12079,8 @@ "5", "" ], - "asctime": "2020-01-29 07:23:10,485", - "created": 1580278990.485712, + "asctime": "2020-12-21 22:32:52,674", + "created": 1608586372.674288, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -12030,35 +12090,35 @@ "lineno": 26, "message": "Expectation (Response Status (Operation not permitted) transfered via pure_json_protocol): result = 5 ()", "module": "test", - "msecs": 485.71205139160156, + "msecs": 674.2880344390869, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 3378.113031387329, - "thread": 140487175731008, + "relativeCreated": 3368.0269718170166, + "thread": 140534768363328, "threadName": "MainThread" } ], - "msecs": 485.77404022216797, + "msecs": 674.3669509887695, "msg": "Response Status (Operation not permitted) transfered via pure_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 3378.1750202178955, - "thread": 140487175731008, + "relativeCreated": 3368.105888366699, + "thread": 140534768363328, "threadName": "MainThread", - "time_consumption": 6.198883056640625e-05 + "time_consumption": 7.891654968261719e-05 }, { "args": [ "[1, 3, u's']", "" ], - "asctime": "2020-01-29 07:23:10,486", - "created": 1580278990.486007, + "asctime": "2020-12-21 22:32:52,674", + "created": 1608586372.674708, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -12075,8 +12135,8 @@ "[ 1, 3, u's' ]", "" ], - "asctime": "2020-01-29 07:23:10,485", - "created": 1580278990.485879, + "asctime": "2020-12-21 22:32:52,674", + "created": 1608586372.67451, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -12086,14 +12146,14 @@ "lineno": 22, "message": "Result (Response Data transfered via pure_json_protocol): [ 1, 3, u's' ] ()", "module": "test", - "msecs": 485.87894439697266, + "msecs": 674.5100021362305, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 3378.2799243927, - "thread": 140487175731008, + "relativeCreated": 3368.24893951416, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -12102,8 +12162,8 @@ "[ 1, 3, u's' ]", "" ], - "asctime": "2020-01-29 07:23:10,485", - "created": 1580278990.485938, + "asctime": "2020-12-21 22:32:52,674", + "created": 1608586372.674597, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -12113,35 +12173,35 @@ "lineno": 26, "message": "Expectation (Response Data transfered via pure_json_protocol): result = [ 1, 3, u's' ] ()", "module": "test", - "msecs": 485.93807220458984, + "msecs": 674.5970249176025, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 3378.3390522003174, - "thread": 140487175731008, + "relativeCreated": 3368.335962295532, + "thread": 140534768363328, "threadName": "MainThread" } ], - "msecs": 486.0069751739502, + "msecs": 674.7078895568848, "msg": "Response Data transfered via pure_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 3378.4079551696777, - "thread": 140487175731008, + "relativeCreated": 3368.4468269348145, + "thread": 140534768363328, "threadName": "MainThread", - "time_consumption": 6.890296936035156e-05 + "time_consumption": 0.00011086463928222656 }, { "args": [ "None", "" ], - "asctime": "2020-01-29 07:23:10,586", - "created": 1580278990.586601, + "asctime": "2020-12-21 22:32:52,775", + "created": 1608586372.775405, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -12159,25 +12219,25 @@ "11", "48879" ], - "asctime": "2020-01-29 07:23:10,586", - "created": 1580278990.586294, + "asctime": "2020-12-21 22:32:52,775", + "created": 1608586372.775036, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 309, + "lineno": 327, "message": "SJP: TIMEOUT (0.1s): Requested data (service_id: 11; data_id: 48879) not in buffer.", "module": "__init__", - "msecs": 586.2939357757568, + "msecs": 775.036096572876, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 3478.6949157714844, - "thread": 140487175731008, + "relativeCreated": 3468.7750339508057, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -12186,8 +12246,8 @@ "None", "" ], - "asctime": "2020-01-29 07:23:10,586", - "created": 1580278990.58645, + "asctime": "2020-12-21 22:32:52,775", + "created": 1608586372.775214, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -12197,14 +12257,14 @@ "lineno": 22, "message": "Result (Return Value (request instance) for pure_json_protocol.receive with data data_id 0xbeef): None ()", "module": "test", - "msecs": 586.4500999450684, + "msecs": 775.2139568328857, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 3478.851079940796, - "thread": 140487175731008, + "relativeCreated": 3468.9528942108154, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -12213,8 +12273,8 @@ "None", "" ], - "asctime": "2020-01-29 07:23:10,586", - "created": 1580278990.586535, + "asctime": "2020-12-21 22:32:52,775", + "created": 1608586372.775318, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -12224,35 +12284,35 @@ "lineno": 26, "message": "Expectation (Return Value (request instance) for pure_json_protocol.receive with data data_id 0xbeef): result = None ()", "module": "test", - "msecs": 586.5349769592285, + "msecs": 775.317907333374, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 3478.935956954956, - "thread": 140487175731008, + "relativeCreated": 3469.0568447113037, + "thread": 140534768363328, "threadName": "MainThread" } ], - "msecs": 586.6010189056396, + "msecs": 775.4049301147461, "msg": "Return Value (request instance) for pure_json_protocol.receive with data data_id 0xbeef is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 3479.001998901367, - "thread": 140487175731008, + "relativeCreated": 3469.143867492676, + "thread": 140534768363328, "threadName": "MainThread", - "time_consumption": 6.604194641113281e-05 + "time_consumption": 8.702278137207031e-05 }, { "args": [ "None", "" ], - "asctime": "2020-01-29 07:23:10,687", - "created": 1580278990.687443, + "asctime": "2020-12-21 22:32:52,876", + "created": 1608586372.876433, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -12270,25 +12330,25 @@ "10", "48879" ], - "asctime": "2020-01-29 07:23:10,687", - "created": 1580278990.687001, + "asctime": "2020-12-21 22:32:52,875", + "created": 1608586372.875867, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 309, + "lineno": 327, "message": "SJP: TIMEOUT (0.1s): Requested data (service_id: 10; data_id: 48879) not in buffer.", "module": "__init__", - "msecs": 687.0009899139404, + "msecs": 875.8668899536133, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 3579.401969909668, - "thread": 140487175731008, + "relativeCreated": 3569.605827331543, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -12297,8 +12357,8 @@ "None", "" ], - "asctime": "2020-01-29 07:23:10,687", - "created": 1580278990.687247, + "asctime": "2020-12-21 22:32:52,876", + "created": 1608586372.876142, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -12308,14 +12368,14 @@ "lineno": 22, "message": "Result (Return Value (response instance) for pure_json_protocol.receive with data data_id 0xbeef): None ()", "module": "test", - "msecs": 687.2470378875732, + "msecs": 876.1420249938965, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 3579.648017883301, - "thread": 140487175731008, + "relativeCreated": 3569.880962371826, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -12324,8 +12384,8 @@ "None", "" ], - "asctime": "2020-01-29 07:23:10,687", - "created": 1580278990.687351, + "asctime": "2020-12-21 22:32:52,876", + "created": 1608586372.876299, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -12335,39 +12395,39 @@ "lineno": 26, "message": "Expectation (Return Value (response instance) for pure_json_protocol.receive with data data_id 0xbeef): result = None ()", "module": "test", - "msecs": 687.3509883880615, + "msecs": 876.2989044189453, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 3579.751968383789, - "thread": 140487175731008, + "relativeCreated": 3570.037841796875, + "thread": 140534768363328, "threadName": "MainThread" } ], - "msecs": 687.4430179595947, + "msecs": 876.4328956604004, "msg": "Return Value (response instance) for pure_json_protocol.receive with data data_id 0xbeef is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 3579.8439979553223, - "thread": 140487175731008, + "relativeCreated": 3570.17183303833, + "thread": 140534768363328, "threadName": "MainThread", - "time_consumption": 9.202957153320312e-05 + "time_consumption": 0.00013399124145507812 } ], - "thread": 140487175731008, + "thread": 140534768363328, "threadName": "MainThread", - "time_consumption": 0.7061131000518799, - "time_finished": "2020-01-29 07:23:10,687", - "time_start": "2020-01-29 07:23:09,981" + "time_consumption": 0.7076098918914795, + "time_finished": "2020-12-21 22:32:52,876", + "time_start": "2020-12-21 22:32:52,168" }, "socket_protocol.pure_json_protocol: Wildcard Callback registration for service_id.": { "args": null, - "asctime": "2020-01-29 07:23:10,687", - "created": 1580278990.687722, + "asctime": "2020-12-21 22:32:52,876", + "created": 1608586372.876881, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -12378,18 +12438,18 @@ "message": "socket_protocol.pure_json_protocol: Wildcard Callback registration for service_id.", "module": "__init__", "moduleLogger": [], - "msecs": 687.7219676971436, + "msecs": 876.8808841705322, "msg": "socket_protocol.pure_json_protocol: Wildcard Callback registration for service_id.", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 3580.122947692871, + "relativeCreated": 3570.619821548462, "testcaseLogger": [ { "args": [], - "asctime": "2020-01-29 07:23:11,189", - "created": 1580278991.189663, + "asctime": "2020-12-21 22:32:53,380", + "created": 1608586373.380403, "exc_info": null, "exc_text": null, "filename": "test_normal_operation.py", @@ -12404,100 +12464,100 @@ "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:10,687", - "created": 1580278990.687875, + "asctime": "2020-12-21 22:32:52,877", + "created": 1608586372.877129, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 295, + "lineno": 313, "message": "SJP: Cleaning up receive-buffer", "module": "__init__", - "msecs": 687.8750324249268, + "msecs": 877.129077911377, "msg": "%s Cleaning up receive-buffer", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 3580.2760124206543, - "thread": 140487175731008, + "relativeCreated": 3570.8680152893066, + "thread": 140534768363328, "threadName": "MainThread" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:10,688", - "created": 1580278990.68804, + "asctime": "2020-12-21 22:32:52,877", + "created": 1608586372.877433, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 199, + "lineno": 217, "message": "SJP: Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "module": "__init__", - "msecs": 688.040018081665, + "msecs": 877.4330615997314, "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 3580.4409980773926, - "thread": 140487175731008, + "relativeCreated": 3571.171998977661, + "thread": 140534768363328, "threadName": "MainThread" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:10,688", - "created": 1580278990.688133, + "asctime": "2020-12-21 22:32:52,877", + "created": 1608586372.87759, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 295, + "lineno": 313, "message": "SJP: Cleaning up receive-buffer", "module": "__init__", - "msecs": 688.1330013275146, + "msecs": 877.5899410247803, "msg": "%s Cleaning up receive-buffer", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 3580.533981323242, - "thread": 140487175731008, + "relativeCreated": 3571.32887840271, + "thread": 140534768363328, "threadName": "MainThread" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:10,688", - "created": 1580278990.688255, + "asctime": "2020-12-21 22:32:52,877", + "created": 1608586372.877828, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 199, + "lineno": 217, "message": "SJP: Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "module": "__init__", - "msecs": 688.2550716400146, + "msecs": 877.8278827667236, "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 3580.656051635742, - "thread": 140487175731008, + "relativeCreated": 3571.5668201446533, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -12508,31 +12568,31 @@ 48879, "{u'test': u'test'}" ], - "asctime": "2020-01-29 07:23:10,688", - "created": 1580278990.688354, + "asctime": "2020-12-21 22:32:52,878", + "created": 1608586372.878004, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 334, + "lineno": 352, "message": "SJP: TX -> status: 0, service_id: 10, data_id: 48879, data: \"{u'test': u'test'}\"", "module": "__init__", - "msecs": 688.3540153503418, + "msecs": 878.0040740966797, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 3580.7549953460693, - "thread": 140487175731008, + "relativeCreated": 3571.7430114746094, + "thread": 140534768363328, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-01-29 07:23:10,688", - "created": 1580278990.688548, + "asctime": "2020-12-21 22:32:52,878", + "created": 1608586372.878397, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -12542,20 +12602,20 @@ "lineno": 55, "message": "Send data: (79): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 7d e8 e0 82 59", "module": "test_helpers", - "msecs": 688.5480880737305, + "msecs": 878.3969879150391, "msg": "Send data: (79): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 7d e8 e0 82 59", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 3580.949068069458, - "thread": 140487175731008, + "relativeCreated": 3572.1359252929688, + "thread": 140534768363328, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-01-29 07:23:10,839", - "created": 1580278990.83904, + "asctime": "2020-12-21 22:32:53,029", + "created": 1608586373.02956, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -12565,14 +12625,14 @@ "lineno": 66, "message": "Receive data (79): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 7d e8 e0 82 59", "module": "test_helpers", - "msecs": 839.0400409698486, + "msecs": 29.560089111328125, "msg": "Receive data (79): 7b 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 7d e8 e0 82 59", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 3731.441020965576, - "thread": 140487038072576, + "relativeCreated": 3723.299026489258, + "thread": 140534738941696, "threadName": "Thread-13" }, { @@ -12583,25 +12643,25 @@ "48879", "{u'test': u'test'}" ], - "asctime": "2020-01-29 07:23:10,839", - "created": 1580278990.839234, + "asctime": "2020-12-21 22:32:53,030", + "created": 1608586373.03003, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 247, + "lineno": 265, "message": "SJP: RX <- status: 0, service_id: 10, data_id: 48879, data: \"{u'test': u'test'}\"", "module": "__init__", - "msecs": 839.2341136932373, + "msecs": 30.030012130737305, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 3731.635093688965, - "thread": 140487038072576, + "relativeCreated": 3723.768949508667, + "thread": 140534738941696, "threadName": "Thread-13" }, { @@ -12609,25 +12669,25 @@ "SJP:", "response_data_method" ], - "asctime": "2020-01-29 07:23:10,839", - "created": 1580278990.839336, + "asctime": "2020-12-21 22:32:53,030", + "created": 1608586373.030287, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 264, + "lineno": 282, "message": "SJP: Executing callback response_data_method to process received data", "module": "__init__", - "msecs": 839.3359184265137, + "msecs": 30.28702735900879, "msg": "%s Executing callback %s to process received data", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 3731.736898422241, - "thread": 140487038072576, + "relativeCreated": 3724.0259647369385, + "thread": 140534738941696, "threadName": "Thread-13" }, { @@ -12638,31 +12698,31 @@ 48879, "[1, 3, u's']" ], - "asctime": "2020-01-29 07:23:10,839", - "created": 1580278990.839414, + "asctime": "2020-12-21 22:32:53,030", + "created": 1608586373.030511, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 334, + "lineno": 352, "message": "SJP: TX -> status: 5, service_id: 11, data_id: 48879, data: \"[1, 3, u's']\"", "module": "__init__", - "msecs": 839.4138813018799, + "msecs": 30.510902404785156, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 3731.8148612976074, - "thread": 140487038072576, + "relativeCreated": 3724.249839782715, + "thread": 140534738941696, "threadName": "Thread-13" }, { "args": [], - "asctime": "2020-01-29 07:23:10,839", - "created": 1580278990.839567, + "asctime": "2020-12-21 22:32:53,030", + "created": 1608586373.030992, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -12672,20 +12732,20 @@ "lineno": 55, "message": "Send data: (74): 7b 22 73 74 61 74 75 73 22 3a 20 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 5b 31 2c 20 33 2c 20 22 73 22 5d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 7d 0e 05 f1 49", "module": "test_helpers", - "msecs": 839.5669460296631, + "msecs": 30.99203109741211, "msg": "Send data: (74): 7b 22 73 74 61 74 75 73 22 3a 20 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 5b 31 2c 20 33 2c 20 22 73 22 5d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 7d 0e 05 f1 49", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 3731.9679260253906, - "thread": 140487038072576, + "relativeCreated": 3724.730968475342, + "thread": 140534738941696, "threadName": "Thread-13" }, { "args": [], - "asctime": "2020-01-29 07:23:10,990", - "created": 1580278990.990065, + "asctime": "2020-12-21 22:32:53,182", + "created": 1608586373.182278, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -12695,14 +12755,14 @@ "lineno": 66, "message": "Receive data (74): 7b 22 73 74 61 74 75 73 22 3a 20 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 5b 31 2c 20 33 2c 20 22 73 22 5d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 7d 0e 05 f1 49", "module": "test_helpers", - "msecs": 990.0650978088379, + "msecs": 182.27791786193848, "msg": "Receive data (74): 7b 22 73 74 61 74 75 73 22 3a 20 35 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 64 61 74 61 22 3a 20 5b 31 2c 20 33 2c 20 22 73 22 5d 2c 20 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 7d 0e 05 f1 49", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 3882.4660778045654, - "thread": 140487116760832, + "relativeCreated": 3876.016855239868, + "thread": 140534747334400, "threadName": "Thread-14" }, { @@ -12713,25 +12773,25 @@ "48879", "[1, 3, u's']" ], - "asctime": "2020-01-29 07:23:10,990", - "created": 1580278990.990299, + "asctime": "2020-12-21 22:32:53,182", + "created": 1608586373.182744, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 247, + "lineno": 265, "message": "SJP: RX <- status: 5, service_id: 11, data_id: 48879, data: \"[1, 3, u's']\"", "module": "__init__", - "msecs": 990.2989864349365, + "msecs": 182.74402618408203, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 3882.699966430664, - "thread": 140487116760832, + "relativeCreated": 3876.4829635620117, + "thread": 140534747334400, "threadName": "Thread-14" }, { @@ -12739,71 +12799,71 @@ "SJP:", "Operation not permitted" ], - "asctime": "2020-01-29 07:23:10,990", - "created": 1580278990.990453, + "asctime": "2020-12-21 22:32:53,183", + "created": 1608586373.183024, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "WARNING", "levelno": 30, - "lineno": 274, + "lineno": 292, "message": "SJP: Received message has a peculiar status: Operation not permitted", "module": "__init__", - "msecs": 990.4530048370361, + "msecs": 183.02392959594727, "msg": "%s Received message has a peculiar status: %s", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 3882.8539848327637, - "thread": 140487116760832, + "relativeCreated": 3876.762866973877, + "thread": 140534747334400, "threadName": "Thread-14" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:10,990", - "created": 1580278990.990567, + "asctime": "2020-12-21 22:32:53,183", + "created": 1608586373.183236, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 292, + "lineno": 310, "message": "SJP: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 990.5669689178467, + "msecs": 183.23588371276855, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 3882.967948913574, - "thread": 140487116760832, + "relativeCreated": 3876.9748210906982, + "thread": 140534747334400, "threadName": "Thread-14" } ], - "msecs": 189.66293334960938, + "msecs": 380.4030418395996, "msg": "Send and received data by pure_json_protocol. Wildcard callback registerd for service_id.", "name": "__tLogger__", "pathname": "src/tests/test_normal_operation.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 4082.063913345337, - "thread": 140487175731008, + "relativeCreated": 4074.1419792175293, + "thread": 140534768363328, "threadName": "MainThread", - "time_consumption": 0.1990959644317627 + "time_consumption": 0.19716715812683105 }, { "args": [ "True", "" ], - "asctime": "2020-01-29 07:23:11,190", - "created": 1580278991.190034, + "asctime": "2020-12-21 22:32:53,381", + "created": 1608586373.381309, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -12820,8 +12880,8 @@ "True", "" ], - "asctime": "2020-01-29 07:23:11,189", - "created": 1580278991.18988, + "asctime": "2020-12-21 22:32:53,380", + "created": 1608586373.380939, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -12831,14 +12891,14 @@ "lineno": 22, "message": "Result (Return value of send method): True ()", "module": "test", - "msecs": 189.8798942565918, + "msecs": 380.9390068054199, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 4082.2808742523193, - "thread": 140487175731008, + "relativeCreated": 4074.6779441833496, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -12847,8 +12907,8 @@ "True", "" ], - "asctime": "2020-01-29 07:23:11,189", - "created": 1580278991.189965, + "asctime": "2020-12-21 22:32:53,381", + "created": 1608586373.381136, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -12858,35 +12918,35 @@ "lineno": 26, "message": "Expectation (Return value of send method): result = True ()", "module": "test", - "msecs": 189.96500968933105, + "msecs": 381.1359405517578, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 4082.3659896850586, - "thread": 140487175731008, + "relativeCreated": 4074.8748779296875, + "thread": 140534768363328, "threadName": "MainThread" } ], - "msecs": 190.0339126586914, + "msecs": 381.30903244018555, "msg": "Return value of send method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 4082.434892654419, - "thread": 140487175731008, + "relativeCreated": 4075.0479698181152, + "thread": 140534768363328, "threadName": "MainThread", - "time_consumption": 6.890296936035156e-05 + "time_consumption": 0.00017309188842773438 }, { "args": [ "0", "" ], - "asctime": "2020-01-29 07:23:11,190", - "created": 1580278991.19023, + "asctime": "2020-12-21 22:32:53,381", + "created": 1608586373.381897, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -12903,8 +12963,8 @@ "0", "" ], - "asctime": "2020-01-29 07:23:11,190", - "created": 1580278991.190128, + "asctime": "2020-12-21 22:32:53,381", + "created": 1608586373.381577, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -12914,14 +12974,14 @@ "lineno": 22, "message": "Result (Request Status (Okay) transfered via pure_json_protocol): 0 ()", "module": "test", - "msecs": 190.12808799743652, + "msecs": 381.5770149230957, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 4082.529067993164, - "thread": 140487175731008, + "relativeCreated": 4075.3159523010254, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -12930,8 +12990,8 @@ "0", "" ], - "asctime": "2020-01-29 07:23:11,190", - "created": 1580278991.190183, + "asctime": "2020-12-21 22:32:53,381", + "created": 1608586373.381734, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -12941,35 +13001,35 @@ "lineno": 26, "message": "Expectation (Request Status (Okay) transfered via pure_json_protocol): result = 0 ()", "module": "test", - "msecs": 190.18292427062988, + "msecs": 381.73389434814453, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 4082.5839042663574, - "thread": 140487175731008, + "relativeCreated": 4075.472831726074, + "thread": 140534768363328, "threadName": "MainThread" } ], - "msecs": 190.2298927307129, + "msecs": 381.89697265625, "msg": "Request Status (Okay) transfered via pure_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 4082.6308727264404, - "thread": 140487175731008, + "relativeCreated": 4075.6359100341797, + "thread": 140534768363328, "threadName": "MainThread", - "time_consumption": 4.696846008300781e-05 + "time_consumption": 0.00016307830810546875 }, { "args": [ "{u'test': u'test'}", "" ], - "asctime": "2020-01-29 07:23:11,190", - "created": 1580278991.190421, + "asctime": "2020-12-21 22:32:53,382", + "created": 1608586373.382515, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -12986,8 +13046,8 @@ "{ u'test': u'test' }", "" ], - "asctime": "2020-01-29 07:23:11,190", - "created": 1580278991.190313, + "asctime": "2020-12-21 22:32:53,382", + "created": 1608586373.382159, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -12997,14 +13057,14 @@ "lineno": 22, "message": "Result (Request Data transfered via pure_json_protocol): { u'test': u'test' } ()", "module": "test", - "msecs": 190.31310081481934, + "msecs": 382.1589946746826, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 4082.714080810547, - "thread": 140487175731008, + "relativeCreated": 4075.8979320526123, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -13013,8 +13073,8 @@ "{ u'test': u'test' }", "" ], - "asctime": "2020-01-29 07:23:11,190", - "created": 1580278991.190361, + "asctime": "2020-12-21 22:32:53,382", + "created": 1608586373.38232, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -13024,35 +13084,35 @@ "lineno": 26, "message": "Expectation (Request Data transfered via pure_json_protocol): result = { u'test': u'test' } ()", "module": "test", - "msecs": 190.36102294921875, + "msecs": 382.3199272155762, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 4082.7620029449463, - "thread": 140487175731008, + "relativeCreated": 4076.058864593506, + "thread": 140534768363328, "threadName": "MainThread" } ], - "msecs": 190.42110443115234, + "msecs": 382.51495361328125, "msg": "Request Data transfered via pure_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 4082.82208442688, - "thread": 140487175731008, + "relativeCreated": 4076.253890991211, + "thread": 140534768363328, "threadName": "MainThread", - "time_consumption": 6.008148193359375e-05 + "time_consumption": 0.00019502639770507812 }, { "args": [ "5", "" ], - "asctime": "2020-01-29 07:23:11,190", - "created": 1580278991.190583, + "asctime": "2020-12-21 22:32:53,383", + "created": 1608586373.383078, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -13069,8 +13129,8 @@ "5", "" ], - "asctime": "2020-01-29 07:23:11,190", - "created": 1580278991.190497, + "asctime": "2020-12-21 22:32:53,382", + "created": 1608586373.382769, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -13080,14 +13140,14 @@ "lineno": 22, "message": "Result (Response Status (Operation not permitted) transfered via pure_json_protocol): 5 ()", "module": "test", - "msecs": 190.49692153930664, + "msecs": 382.7691078186035, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 4082.897901535034, - "thread": 140487175731008, + "relativeCreated": 4076.508045196533, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -13096,8 +13156,8 @@ "5", "" ], - "asctime": "2020-01-29 07:23:11,190", - "created": 1580278991.190541, + "asctime": "2020-12-21 22:32:53,382", + "created": 1608586373.38292, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -13107,35 +13167,35 @@ "lineno": 26, "message": "Expectation (Response Status (Operation not permitted) transfered via pure_json_protocol): result = 5 ()", "module": "test", - "msecs": 190.54102897644043, + "msecs": 382.9200267791748, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 4082.942008972168, - "thread": 140487175731008, + "relativeCreated": 4076.6589641571045, + "thread": 140534768363328, "threadName": "MainThread" } ], - "msecs": 190.5829906463623, + "msecs": 383.07809829711914, "msg": "Response Status (Operation not permitted) transfered via pure_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 4082.98397064209, - "thread": 140487175731008, + "relativeCreated": 4076.817035675049, + "thread": 140534768363328, "threadName": "MainThread", - "time_consumption": 4.1961669921875e-05 + "time_consumption": 0.00015807151794433594 }, { "args": [ "[1, 3, u's']", "" ], - "asctime": "2020-01-29 07:23:11,190", - "created": 1580278991.190769, + "asctime": "2020-12-21 22:32:53,383", + "created": 1608586373.383708, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -13152,8 +13212,8 @@ "[ 1, 3, u's' ]", "" ], - "asctime": "2020-01-29 07:23:11,190", - "created": 1580278991.190667, + "asctime": "2020-12-21 22:32:53,383", + "created": 1608586373.383343, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -13163,14 +13223,14 @@ "lineno": 22, "message": "Result (Response Data transfered via pure_json_protocol): [ 1, 3, u's' ] ()", "module": "test", - "msecs": 190.66691398620605, + "msecs": 383.342981338501, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 4083.0678939819336, - "thread": 140487175731008, + "relativeCreated": 4077.0819187164307, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -13179,8 +13239,8 @@ "[ 1, 3, u's' ]", "" ], - "asctime": "2020-01-29 07:23:11,190", - "created": 1580278991.190712, + "asctime": "2020-12-21 22:32:53,383", + "created": 1608586373.383504, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -13190,35 +13250,35 @@ "lineno": 26, "message": "Expectation (Response Data transfered via pure_json_protocol): result = [ 1, 3, u's' ] ()", "module": "test", - "msecs": 190.71197509765625, + "msecs": 383.50391387939453, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 4083.112955093384, - "thread": 140487175731008, + "relativeCreated": 4077.242851257324, + "thread": 140534768363328, "threadName": "MainThread" } ], - "msecs": 190.76895713806152, + "msecs": 383.70800018310547, "msg": "Response Data transfered via pure_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 4083.169937133789, - "thread": 140487175731008, + "relativeCreated": 4077.446937561035, + "thread": 140534768363328, "threadName": "MainThread", - "time_consumption": 5.698204040527344e-05 + "time_consumption": 0.0002040863037109375 }, { "args": [ "None", "" ], - "asctime": "2020-01-29 07:23:11,291", - "created": 1580278991.291349, + "asctime": "2020-12-21 22:32:53,485", + "created": 1608586373.485143, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -13236,25 +13296,25 @@ "11", "48879" ], - "asctime": "2020-01-29 07:23:11,291", - "created": 1580278991.291038, + "asctime": "2020-12-21 22:32:53,484", + "created": 1608586373.484328, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 309, + "lineno": 327, "message": "SJP: TIMEOUT (0.1s): Requested data (service_id: 11; data_id: 48879) not in buffer.", "module": "__init__", - "msecs": 291.03803634643555, + "msecs": 484.328031539917, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 4183.439016342163, - "thread": 140487175731008, + "relativeCreated": 4178.066968917847, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -13263,8 +13323,8 @@ "None", "" ], - "asctime": "2020-01-29 07:23:11,291", - "created": 1580278991.291192, + "asctime": "2020-12-21 22:32:53,484", + "created": 1608586373.484686, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -13274,14 +13334,14 @@ "lineno": 22, "message": "Result (Return Value (request instance) for pure_json_protocol.receive with data data_id 0xbeef): None ()", "module": "test", - "msecs": 291.19205474853516, + "msecs": 484.68589782714844, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 4183.593034744263, - "thread": 140487175731008, + "relativeCreated": 4178.424835205078, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -13290,8 +13350,8 @@ "None", "" ], - "asctime": "2020-01-29 07:23:11,291", - "created": 1580278991.291281, + "asctime": "2020-12-21 22:32:53,484", + "created": 1608586373.484959, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -13301,35 +13361,35 @@ "lineno": 26, "message": "Expectation (Return Value (request instance) for pure_json_protocol.receive with data data_id 0xbeef): result = None ()", "module": "test", - "msecs": 291.28098487854004, + "msecs": 484.9588871002197, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 4183.681964874268, - "thread": 140487175731008, + "relativeCreated": 4178.697824478149, + "thread": 140534768363328, "threadName": "MainThread" } ], - "msecs": 291.348934173584, + "msecs": 485.14294624328613, "msg": "Return Value (request instance) for pure_json_protocol.receive with data data_id 0xbeef is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 4183.7499141693115, - "thread": 140487175731008, + "relativeCreated": 4178.881883621216, + "thread": 140534768363328, "threadName": "MainThread", - "time_consumption": 6.794929504394531e-05 + "time_consumption": 0.00018405914306640625 }, { "args": [ "None", "" ], - "asctime": "2020-01-29 07:23:11,391", - "created": 1580278991.391972, + "asctime": "2020-12-21 22:32:53,586", + "created": 1608586373.586616, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -13347,25 +13407,25 @@ "10", "48879" ], - "asctime": "2020-01-29 07:23:11,391", - "created": 1580278991.391657, + "asctime": "2020-12-21 22:32:53,585", + "created": 1608586373.585879, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 309, + "lineno": 327, "message": "SJP: TIMEOUT (0.1s): Requested data (service_id: 10; data_id: 48879) not in buffer.", "module": "__init__", - "msecs": 391.65711402893066, + "msecs": 585.8790874481201, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 4284.058094024658, - "thread": 140487175731008, + "relativeCreated": 4279.61802482605, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -13374,8 +13434,8 @@ "None", "" ], - "asctime": "2020-01-29 07:23:11,391", - "created": 1580278991.391811, + "asctime": "2020-12-21 22:32:53,586", + "created": 1608586373.586239, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -13385,14 +13445,14 @@ "lineno": 22, "message": "Result (Return Value (response instance) for pure_json_protocol.receive with data data_id 0xbeef): None ()", "module": "test", - "msecs": 391.8108940124512, + "msecs": 586.2390995025635, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 4284.211874008179, - "thread": 140487175731008, + "relativeCreated": 4279.978036880493, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -13401,8 +13461,8 @@ "None", "" ], - "asctime": "2020-01-29 07:23:11,391", - "created": 1580278991.3919, + "asctime": "2020-12-21 22:32:53,586", + "created": 1608586373.586433, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -13412,39 +13472,39 @@ "lineno": 26, "message": "Expectation (Return Value (response instance) for pure_json_protocol.receive with data data_id 0xbeef): result = None ()", "module": "test", - "msecs": 391.90006256103516, + "msecs": 586.432933807373, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 4284.301042556763, - "thread": 140487175731008, + "relativeCreated": 4280.171871185303, + "thread": 140534768363328, "threadName": "MainThread" } ], - "msecs": 391.9720649719238, + "msecs": 586.616039276123, "msg": "Return Value (response instance) for pure_json_protocol.receive with data data_id 0xbeef is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 4284.373044967651, - "thread": 140487175731008, + "relativeCreated": 4280.354976654053, + "thread": 140534768363328, "threadName": "MainThread", - "time_consumption": 7.200241088867188e-05 + "time_consumption": 0.00018310546875 } ], - "thread": 140487175731008, + "thread": 140534768363328, "threadName": "MainThread", - "time_consumption": 0.7042500972747803, - "time_finished": "2020-01-29 07:23:11,391", - "time_start": "2020-01-29 07:23:10,687" + "time_consumption": 0.7097351551055908, + "time_finished": "2020-12-21 22:32:53,586", + "time_start": "2020-12-21 22:32:52,876" }, "socket_protocol.struct_json_protocol: Send and receive check (Twice for coverage of buffer initialisation).": { "args": null, - "asctime": "2020-01-29 07:23:12,802", - "created": 1580278992.802714, + "asctime": "2020-12-21 22:32:55,007", + "created": 1608586375.007368, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -13455,18 +13515,18 @@ "message": "socket_protocol.struct_json_protocol: Send and receive check (Twice for coverage of buffer initialisation).", "module": "__init__", "moduleLogger": [], - "msecs": 802.7141094207764, + "msecs": 7.3680877685546875, "msg": "socket_protocol.struct_json_protocol: Send and receive check (Twice for coverage of buffer initialisation).", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 5695.115089416504, + "relativeCreated": 5701.107025146484, "testcaseLogger": [ { "args": [], - "asctime": "2020-01-29 07:23:13,808", - "created": 1580278993.808602, + "asctime": "2020-12-21 22:32:56,013", + "created": 1608586376.013852, "exc_info": null, "exc_text": null, "filename": "test_normal_operation.py", @@ -13481,100 +13541,100 @@ "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:12,803", - "created": 1580278992.803023, + "asctime": "2020-12-21 22:32:55,007", + "created": 1608586375.007639, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 295, + "lineno": 313, "message": "SJP: Cleaning up receive-buffer", "module": "__init__", - "msecs": 803.023099899292, + "msecs": 7.6389312744140625, "msg": "%s Cleaning up receive-buffer", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 5695.4240798950195, - "thread": 140487175731008, + "relativeCreated": 5701.377868652344, + "thread": 140534768363328, "threadName": "MainThread" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:12,803", - "created": 1580278992.803395, + "asctime": "2020-12-21 22:32:55,007", + "created": 1608586375.007949, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 199, + "lineno": 217, "message": "SJP: Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "module": "__init__", - "msecs": 803.3950328826904, + "msecs": 7.949113845825195, "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 5695.796012878418, - "thread": 140487175731008, + "relativeCreated": 5701.688051223755, + "thread": 140534768363328, "threadName": "MainThread" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:12,803", - "created": 1580278992.803593, + "asctime": "2020-12-21 22:32:55,008", + "created": 1608586375.008118, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 295, + "lineno": 313, "message": "SJP: Cleaning up receive-buffer", "module": "__init__", - "msecs": 803.5929203033447, + "msecs": 8.117914199829102, "msg": "%s Cleaning up receive-buffer", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 5695.993900299072, - "thread": 140487175731008, + "relativeCreated": 5701.856851577759, + "thread": 140534768363328, "threadName": "MainThread" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:12,803", - "created": 1580278992.803902, + "asctime": "2020-12-21 22:32:55,008", + "created": 1608586375.008373, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 199, + "lineno": 217, "message": "SJP: Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "module": "__init__", - "msecs": 803.9019107818604, + "msecs": 8.373022079467773, "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 5696.302890777588, - "thread": 140487175731008, + "relativeCreated": 5702.1119594573975, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -13585,31 +13645,31 @@ 45054, "{u'test': u'test'}" ], - "asctime": "2020-01-29 07:23:12,804", - "created": 1580278992.804161, + "asctime": "2020-12-21 22:32:55,008", + "created": 1608586375.008577, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 334, + "lineno": 352, "message": "SJP: TX -> status: 0, service_id: 10, data_id: 45054, data: \"{u'test': u'test'}\"", "module": "__init__", - "msecs": 804.1610717773438, + "msecs": 8.577108383178711, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 5696.562051773071, - "thread": 140487175731008, + "relativeCreated": 5702.316045761108, + "thread": 140534768363328, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-01-29 07:23:12,804", - "created": 1580278992.804559, + "asctime": "2020-12-21 22:32:55,008", + "created": 1608586375.008947, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -13619,20 +13679,20 @@ "lineno": 55, "message": "Send data: (29): 00 00 00 00 00 00 00 0a 00 00 af fe 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 47", "module": "test_helpers", - "msecs": 804.5589923858643, + "msecs": 8.946895599365234, "msg": "Send data: (29): 00 00 00 00 00 00 00 0a 00 00 af fe 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 47", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 5696.959972381592, - "thread": 140487175731008, + "relativeCreated": 5702.685832977295, + "thread": 140534768363328, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-01-29 07:23:12,955", - "created": 1580278992.955463, + "asctime": "2020-12-21 22:32:55,159", + "created": 1608586375.15974, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -13642,14 +13702,14 @@ "lineno": 66, "message": "Receive data (29): 00 00 00 00 00 00 00 0a 00 00 af fe 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 47", "module": "test_helpers", - "msecs": 955.4629325866699, + "msecs": 159.73997116088867, "msg": "Receive data (29): 00 00 00 00 00 00 00 0a 00 00 af fe 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 47", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 5847.8639125823975, - "thread": 140487116760832, + "relativeCreated": 5853.478908538818, + "thread": 140534747334400, "threadName": "Thread-19" }, { @@ -13660,25 +13720,25 @@ "45054", "{u'test': u'test'}" ], - "asctime": "2020-01-29 07:23:12,955", - "created": 1580278992.955929, + "asctime": "2020-12-21 22:32:55,160", + "created": 1608586375.16, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 247, + "lineno": 265, "message": "SJP: RX <- status: 0, service_id: 10, data_id: 45054, data: \"{u'test': u'test'}\"", "module": "__init__", - "msecs": 955.9290409088135, + "msecs": 160.00008583068848, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 5848.330020904541, - "thread": 140487116760832, + "relativeCreated": 5853.739023208618, + "thread": 140534747334400, "threadName": "Thread-19" }, { @@ -13686,25 +13746,25 @@ "SJP:", "response_data_method" ], - "asctime": "2020-01-29 07:23:12,956", - "created": 1580278992.956146, + "asctime": "2020-12-21 22:32:55,160", + "created": 1608586375.160105, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 264, + "lineno": 282, "message": "SJP: Executing callback response_data_method to process received data", "module": "__init__", - "msecs": 956.1460018157959, + "msecs": 160.10499000549316, "msg": "%s Executing callback %s to process received data", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 5848.546981811523, - "thread": 140487116760832, + "relativeCreated": 5853.843927383423, + "thread": 140534747334400, "threadName": "Thread-19" }, { @@ -13715,31 +13775,31 @@ 45054, "[1, 3, u's']" ], - "asctime": "2020-01-29 07:23:12,956", - "created": 1580278992.956354, + "asctime": "2020-12-21 22:32:55,160", + "created": 1608586375.160197, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 334, + "lineno": 352, "message": "SJP: TX -> status: 5, service_id: 11, data_id: 45054, data: \"[1, 3, u's']\"", "module": "__init__", - "msecs": 956.3539028167725, + "msecs": 160.19701957702637, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 5848.7548828125, - "thread": 140487116760832, + "relativeCreated": 5853.935956954956, + "thread": 140534747334400, "threadName": "Thread-19" }, { "args": [], - "asctime": "2020-01-29 07:23:12,956", - "created": 1580278992.956724, + "asctime": "2020-12-21 22:32:55,160", + "created": 1608586375.160382, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -13749,20 +13809,20 @@ "lineno": 55, "message": "Send data: (24): 00 00 00 05 00 00 00 0b 00 00 af fe 5b 31 2c 20 33 2c 20 22 73 22 5d 28", "module": "test_helpers", - "msecs": 956.7239284515381, + "msecs": 160.38203239440918, "msg": "Send data: (24): 00 00 00 05 00 00 00 0b 00 00 af fe 5b 31 2c 20 33 2c 20 22 73 22 5d 28", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 5849.124908447266, - "thread": 140487116760832, + "relativeCreated": 5854.120969772339, + "thread": 140534747334400, "threadName": "Thread-19" }, { "args": [], - "asctime": "2020-01-29 07:23:13,107", - "created": 1580278993.107846, + "asctime": "2020-12-21 22:32:55,311", + "created": 1608586375.311285, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -13772,14 +13832,14 @@ "lineno": 66, "message": "Receive data (24): 00 00 00 05 00 00 00 0b 00 00 af fe 5b 31 2c 20 33 2c 20 22 73 22 5d 28", "module": "test_helpers", - "msecs": 107.84602165222168, + "msecs": 311.28501892089844, "msg": "Receive data (24): 00 00 00 05 00 00 00 0b 00 00 af fe 5b 31 2c 20 33 2c 20 22 73 22 5d 28", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 6000.247001647949, - "thread": 140487038072576, + "relativeCreated": 6005.023956298828, + "thread": 140534738941696, "threadName": "Thread-20" }, { @@ -13790,25 +13850,25 @@ "45054", "[1, 3, u's']" ], - "asctime": "2020-01-29 07:23:13,108", - "created": 1580278993.108256, + "asctime": "2020-12-21 22:32:55,311", + "created": 1608586375.311786, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 247, + "lineno": 265, "message": "SJP: RX <- status: 5, service_id: 11, data_id: 45054, data: \"[1, 3, u's']\"", "module": "__init__", - "msecs": 108.25610160827637, + "msecs": 311.7859363555908, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 6000.657081604004, - "thread": 140487038072576, + "relativeCreated": 6005.5248737335205, + "thread": 140534738941696, "threadName": "Thread-20" }, { @@ -13816,50 +13876,50 @@ "SJP:", "Operation not permitted" ], - "asctime": "2020-01-29 07:23:13,108", - "created": 1580278993.108512, + "asctime": "2020-12-21 22:32:55,312", + "created": 1608586375.312057, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "WARNING", "levelno": 30, - "lineno": 274, + "lineno": 292, "message": "SJP: Received message has a peculiar status: Operation not permitted", "module": "__init__", - "msecs": 108.51192474365234, + "msecs": 312.0570182800293, "msg": "%s Received message has a peculiar status: %s", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 6000.91290473938, - "thread": 140487038072576, + "relativeCreated": 6005.795955657959, + "thread": 140534738941696, "threadName": "Thread-20" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:13,108", - "created": 1580278993.108725, + "asctime": "2020-12-21 22:32:55,312", + "created": 1608586375.31227, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 292, + "lineno": 310, "message": "SJP: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 108.72507095336914, + "msecs": 312.269926071167, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 6001.126050949097, - "thread": 140487038072576, + "relativeCreated": 6006.008863449097, + "thread": 140534738941696, "threadName": "Thread-20" }, { @@ -13870,31 +13930,31 @@ 45054, "{u'test': u'test'}" ], - "asctime": "2020-01-29 07:23:13,306", - "created": 1580278993.306229, + "asctime": "2020-12-21 22:32:55,510", + "created": 1608586375.510958, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 334, + "lineno": 352, "message": "SJP: TX -> status: 0, service_id: 10, data_id: 45054, data: \"{u'test': u'test'}\"", "module": "__init__", - "msecs": 306.2291145324707, + "msecs": 510.9579563140869, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 6198.630094528198, - "thread": 140487175731008, + "relativeCreated": 6204.696893692017, + "thread": 140534768363328, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-01-29 07:23:13,306", - "created": 1580278993.306724, + "asctime": "2020-12-21 22:32:55,511", + "created": 1608586375.511563, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -13904,20 +13964,20 @@ "lineno": 55, "message": "Send data: (29): 00 00 00 00 00 00 00 0a 00 00 af fe 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 47", "module": "test_helpers", - "msecs": 306.72407150268555, + "msecs": 511.5630626678467, "msg": "Send data: (29): 00 00 00 00 00 00 00 0a 00 00 af fe 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 47", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 6199.125051498413, - "thread": 140487175731008, + "relativeCreated": 6205.302000045776, + "thread": 140534768363328, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-01-29 07:23:13,457", - "created": 1580278993.457597, + "asctime": "2020-12-21 22:32:55,662", + "created": 1608586375.662705, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -13927,14 +13987,14 @@ "lineno": 66, "message": "Receive data (29): 00 00 00 00 00 00 00 0a 00 00 af fe 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 47", "module": "test_helpers", - "msecs": 457.597017288208, + "msecs": 662.7049446105957, "msg": "Receive data (29): 00 00 00 00 00 00 00 0a 00 00 af fe 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 47", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 6349.997997283936, - "thread": 140487038072576, + "relativeCreated": 6356.443881988525, + "thread": 140534738941696, "threadName": "Thread-21" }, { @@ -13945,25 +14005,25 @@ "45054", "{u'test': u'test'}" ], - "asctime": "2020-01-29 07:23:13,457", - "created": 1580278993.457894, + "asctime": "2020-12-21 22:32:55,663", + "created": 1608586375.663232, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 247, + "lineno": 265, "message": "SJP: RX <- status: 0, service_id: 10, data_id: 45054, data: \"{u'test': u'test'}\"", "module": "__init__", - "msecs": 457.89408683776855, + "msecs": 663.2320880889893, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 6350.295066833496, - "thread": 140487038072576, + "relativeCreated": 6356.971025466919, + "thread": 140534738941696, "threadName": "Thread-21" }, { @@ -13971,25 +14031,25 @@ "SJP:", "response_data_method" ], - "asctime": "2020-01-29 07:23:13,458", - "created": 1580278993.458009, + "asctime": "2020-12-21 22:32:55,663", + "created": 1608586375.663504, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 264, + "lineno": 282, "message": "SJP: Executing callback response_data_method to process received data", "module": "__init__", - "msecs": 458.0090045928955, + "msecs": 663.503885269165, "msg": "%s Executing callback %s to process received data", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 6350.409984588623, - "thread": 140487038072576, + "relativeCreated": 6357.242822647095, + "thread": 140534738941696, "threadName": "Thread-21" }, { @@ -14000,31 +14060,31 @@ 45054, "[1, 3, u's']" ], - "asctime": "2020-01-29 07:23:13,458", - "created": 1580278993.458115, + "asctime": "2020-12-21 22:32:55,663", + "created": 1608586375.663712, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 334, + "lineno": 352, "message": "SJP: TX -> status: 5, service_id: 11, data_id: 45054, data: \"[1, 3, u's']\"", "module": "__init__", - "msecs": 458.1151008605957, + "msecs": 663.7120246887207, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 6350.516080856323, - "thread": 140487038072576, + "relativeCreated": 6357.45096206665, + "thread": 140534738941696, "threadName": "Thread-21" }, { "args": [], - "asctime": "2020-01-29 07:23:13,458", - "created": 1580278993.458314, + "asctime": "2020-12-21 22:32:55,664", + "created": 1608586375.664093, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -14034,20 +14094,20 @@ "lineno": 55, "message": "Send data: (24): 00 00 00 05 00 00 00 0b 00 00 af fe 5b 31 2c 20 33 2c 20 22 73 22 5d 28", "module": "test_helpers", - "msecs": 458.3139419555664, + "msecs": 664.093017578125, "msg": "Send data: (24): 00 00 00 05 00 00 00 0b 00 00 af fe 5b 31 2c 20 33 2c 20 22 73 22 5d 28", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 6350.714921951294, - "thread": 140487038072576, + "relativeCreated": 6357.831954956055, + "thread": 140534738941696, "threadName": "Thread-21" }, { "args": [], - "asctime": "2020-01-29 07:23:13,608", - "created": 1580278993.608934, + "asctime": "2020-12-21 22:32:55,815", + "created": 1608586375.815239, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -14057,14 +14117,14 @@ "lineno": 66, "message": "Receive data (24): 00 00 00 05 00 00 00 0b 00 00 af fe 5b 31 2c 20 33 2c 20 22 73 22 5d 28", "module": "test_helpers", - "msecs": 608.9339256286621, + "msecs": 815.2389526367188, "msg": "Receive data (24): 00 00 00 05 00 00 00 0b 00 00 af fe 5b 31 2c 20 33 2c 20 22 73 22 5d 28", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 6501.33490562439, - "thread": 140487116760832, + "relativeCreated": 6508.977890014648, + "thread": 140534747334400, "threadName": "Thread-22" }, { @@ -14075,25 +14135,25 @@ "45054", "[1, 3, u's']" ], - "asctime": "2020-01-29 07:23:13,609", - "created": 1580278993.609204, + "asctime": "2020-12-21 22:32:55,815", + "created": 1608586375.815756, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 247, + "lineno": 265, "message": "SJP: RX <- status: 5, service_id: 11, data_id: 45054, data: \"[1, 3, u's']\"", "module": "__init__", - "msecs": 609.2040538787842, + "msecs": 815.75608253479, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 6501.605033874512, - "thread": 140487116760832, + "relativeCreated": 6509.49501991272, + "thread": 140534747334400, "threadName": "Thread-22" }, { @@ -14101,71 +14161,71 @@ "SJP:", "Operation not permitted" ], - "asctime": "2020-01-29 07:23:13,609", - "created": 1580278993.609355, + "asctime": "2020-12-21 22:32:55,816", + "created": 1608586375.816028, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "WARNING", "levelno": 30, - "lineno": 274, + "lineno": 292, "message": "SJP: Received message has a peculiar status: Operation not permitted", "module": "__init__", - "msecs": 609.3549728393555, + "msecs": 816.0281181335449, "msg": "%s Received message has a peculiar status: %s", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 6501.755952835083, - "thread": 140487116760832, + "relativeCreated": 6509.767055511475, + "thread": 140534747334400, "threadName": "Thread-22" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:13,609", - "created": 1580278993.609446, + "asctime": "2020-12-21 22:32:55,816", + "created": 1608586375.816241, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 292, + "lineno": 310, "message": "SJP: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 609.4460487365723, + "msecs": 816.2410259246826, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 6501.8470287323, - "thread": 140487116760832, + "relativeCreated": 6509.979963302612, + "thread": 140534747334400, "threadName": "Thread-22" } ], - "msecs": 808.6020946502686, + "msecs": 13.85188102722168, "msg": "Send and received data by struct_json_protocol.", "name": "__tLogger__", "pathname": "src/tests/test_normal_operation.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 6701.003074645996, - "thread": 140487175731008, + "relativeCreated": 6707.590818405151, + "thread": 140534768363328, "threadName": "MainThread", - "time_consumption": 0.1991560459136963 + "time_consumption": 0.19761085510253906 }, { "args": [ "True", "" ], - "asctime": "2020-01-29 07:23:13,809", - "created": 1580278993.809202, + "asctime": "2020-12-21 22:32:56,014", + "created": 1608586376.014769, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -14182,8 +14242,8 @@ "True", "" ], - "asctime": "2020-01-29 07:23:13,808", - "created": 1580278993.808955, + "asctime": "2020-12-21 22:32:56,014", + "created": 1608586376.014382, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -14193,14 +14253,14 @@ "lineno": 22, "message": "Result (Return value of send method): True ()", "module": "test", - "msecs": 808.9549541473389, + "msecs": 14.381885528564453, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 6701.355934143066, - "thread": 140487175731008, + "relativeCreated": 6708.120822906494, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -14209,8 +14269,8 @@ "True", "" ], - "asctime": "2020-01-29 07:23:13,809", - "created": 1580278993.80909, + "asctime": "2020-12-21 22:32:56,014", + "created": 1608586376.014584, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -14220,35 +14280,35 @@ "lineno": 26, "message": "Expectation (Return value of send method): result = True ()", "module": "test", - "msecs": 809.0898990631104, + "msecs": 14.584064483642578, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 6701.490879058838, - "thread": 140487175731008, + "relativeCreated": 6708.323001861572, + "thread": 140534768363328, "threadName": "MainThread" } ], - "msecs": 809.2019557952881, + "msecs": 14.76907730102539, "msg": "Return value of send method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 6701.602935791016, - "thread": 140487175731008, + "relativeCreated": 6708.508014678955, + "thread": 140534768363328, "threadName": "MainThread", - "time_consumption": 0.00011205673217773438 + "time_consumption": 0.0001850128173828125 }, { "args": [ "0", "" ], - "asctime": "2020-01-29 07:23:13,809", - "created": 1580278993.809597, + "asctime": "2020-12-21 22:32:56,015", + "created": 1608586376.015357, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -14265,8 +14325,8 @@ "0", "" ], - "asctime": "2020-01-29 07:23:13,809", - "created": 1580278993.809404, + "asctime": "2020-12-21 22:32:56,015", + "created": 1608586376.015045, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -14276,14 +14336,14 @@ "lineno": 22, "message": "Result (Request Status (Okay) transfered via struct_json_protocol): 0 ()", "module": "test", - "msecs": 809.4038963317871, + "msecs": 15.044927597045898, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 6701.804876327515, - "thread": 140487175731008, + "relativeCreated": 6708.783864974976, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -14292,8 +14352,8 @@ "0", "" ], - "asctime": "2020-01-29 07:23:13,809", - "created": 1580278993.809501, + "asctime": "2020-12-21 22:32:56,015", + "created": 1608586376.015204, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -14303,35 +14363,35 @@ "lineno": 26, "message": "Expectation (Request Status (Okay) transfered via struct_json_protocol): result = 0 ()", "module": "test", - "msecs": 809.5009326934814, + "msecs": 15.20395278930664, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 6701.901912689209, - "thread": 140487175731008, + "relativeCreated": 6708.942890167236, + "thread": 140534768363328, "threadName": "MainThread" } ], - "msecs": 809.5970153808594, + "msecs": 15.357017517089844, "msg": "Request Status (Okay) transfered via struct_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 6701.997995376587, - "thread": 140487175731008, + "relativeCreated": 6709.0959548950195, + "thread": 140534768363328, "threadName": "MainThread", - "time_consumption": 9.608268737792969e-05 + "time_consumption": 0.00015306472778320312 }, { "args": [ "{u'test': u'test'}", "" ], - "asctime": "2020-01-29 07:23:13,809", - "created": 1580278993.809943, + "asctime": "2020-12-21 22:32:56,015", + "created": 1608586376.015977, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -14348,8 +14408,8 @@ "{ u'test': u'test' }", "" ], - "asctime": "2020-01-29 07:23:13,809", - "created": 1580278993.809745, + "asctime": "2020-12-21 22:32:56,015", + "created": 1608586376.015619, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -14359,14 +14419,14 @@ "lineno": 22, "message": "Result (Request Data transfered via struct_json_protocol): { u'test': u'test' } ()", "module": "test", - "msecs": 809.7450733184814, + "msecs": 15.619039535522461, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 6702.146053314209, - "thread": 140487175731008, + "relativeCreated": 6709.357976913452, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -14375,8 +14435,8 @@ "{ u'test': u'test' }", "" ], - "asctime": "2020-01-29 07:23:13,809", - "created": 1580278993.809837, + "asctime": "2020-12-21 22:32:56,015", + "created": 1608586376.015779, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -14386,35 +14446,35 @@ "lineno": 26, "message": "Expectation (Request Data transfered via struct_json_protocol): result = { u'test': u'test' } ()", "module": "test", - "msecs": 809.8371028900146, + "msecs": 15.77901840209961, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 6702.238082885742, - "thread": 140487175731008, + "relativeCreated": 6709.517955780029, + "thread": 140534768363328, "threadName": "MainThread" } ], - "msecs": 809.9429607391357, + "msecs": 15.976905822753906, "msg": "Request Data transfered via struct_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 6702.343940734863, - "thread": 140487175731008, + "relativeCreated": 6709.715843200684, + "thread": 140534768363328, "threadName": "MainThread", - "time_consumption": 0.00010585784912109375 + "time_consumption": 0.00019788742065429688 }, { "args": [ "5", "" ], - "asctime": "2020-01-29 07:23:13,810", - "created": 1580278993.810233, + "asctime": "2020-12-21 22:32:56,016", + "created": 1608586376.016545, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -14431,8 +14491,8 @@ "5", "" ], - "asctime": "2020-01-29 07:23:13,810", - "created": 1580278993.810082, + "asctime": "2020-12-21 22:32:56,016", + "created": 1608586376.016233, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -14442,14 +14502,14 @@ "lineno": 22, "message": "Result (Response Status (Operation not permitted) transfered via struct_json_protocol): 5 ()", "module": "test", - "msecs": 810.081958770752, + "msecs": 16.232967376708984, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 6702.4829387664795, - "thread": 140487175731008, + "relativeCreated": 6709.971904754639, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -14458,8 +14518,8 @@ "5", "" ], - "asctime": "2020-01-29 07:23:13,810", - "created": 1580278993.81016, + "asctime": "2020-12-21 22:32:56,016", + "created": 1608586376.016384, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -14469,35 +14529,35 @@ "lineno": 26, "message": "Expectation (Response Status (Operation not permitted) transfered via struct_json_protocol): result = 5 ()", "module": "test", - "msecs": 810.1599216461182, + "msecs": 16.383886337280273, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 6702.560901641846, - "thread": 140487175731008, + "relativeCreated": 6710.12282371521, + "thread": 140534768363328, "threadName": "MainThread" } ], - "msecs": 810.2331161499023, + "msecs": 16.54505729675293, "msg": "Response Status (Operation not permitted) transfered via struct_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 6702.63409614563, - "thread": 140487175731008, + "relativeCreated": 6710.283994674683, + "thread": 140534768363328, "threadName": "MainThread", - "time_consumption": 7.319450378417969e-05 + "time_consumption": 0.00016117095947265625 }, { "args": [ "[1, 3, u's']", "" ], - "asctime": "2020-01-29 07:23:13,810", - "created": 1580278993.81056, + "asctime": "2020-12-21 22:32:56,017", + "created": 1608586376.017232, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -14514,8 +14574,8 @@ "[ 1, 3, u's' ]", "" ], - "asctime": "2020-01-29 07:23:13,810", - "created": 1580278993.810373, + "asctime": "2020-12-21 22:32:56,016", + "created": 1608586376.016857, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -14525,14 +14585,14 @@ "lineno": 22, "message": "Result (Response Data transfered via struct_json_protocol): [ 1, 3, u's' ] ()", "module": "test", - "msecs": 810.373067855835, + "msecs": 16.856908798217773, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 6702.7740478515625, - "thread": 140487175731008, + "relativeCreated": 6710.5958461761475, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -14541,8 +14601,8 @@ "[ 1, 3, u's' ]", "" ], - "asctime": "2020-01-29 07:23:13,810", - "created": 1580278993.81045, + "asctime": "2020-12-21 22:32:56,017", + "created": 1608586376.017023, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -14552,35 +14612,35 @@ "lineno": 26, "message": "Expectation (Response Data transfered via struct_json_protocol): result = [ 1, 3, u's' ] ()", "module": "test", - "msecs": 810.4500770568848, + "msecs": 17.023086547851562, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 6702.851057052612, - "thread": 140487175731008, + "relativeCreated": 6710.762023925781, + "thread": 140534768363328, "threadName": "MainThread" } ], - "msecs": 810.5599880218506, + "msecs": 17.23194122314453, "msg": "Response Data transfered via struct_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 6702.960968017578, - "thread": 140487175731008, + "relativeCreated": 6710.970878601074, + "thread": 140534768363328, "threadName": "MainThread", - "time_consumption": 0.00010991096496582031 + "time_consumption": 0.00020885467529296875 }, { "args": [ "None", "" ], - "asctime": "2020-01-29 07:23:13,911", - "created": 1580278993.911381, + "asctime": "2020-12-21 22:32:56,118", + "created": 1608586376.118748, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -14598,25 +14658,25 @@ "11", "45054" ], - "asctime": "2020-01-29 07:23:13,910", - "created": 1580278993.910898, + "asctime": "2020-12-21 22:32:56,117", + "created": 1608586376.117847, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 309, + "lineno": 327, "message": "SJP: TIMEOUT (0.1s): Requested data (service_id: 11; data_id: 45054) not in buffer.", "module": "__init__", - "msecs": 910.897970199585, + "msecs": 117.84696578979492, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 6803.2989501953125, - "thread": 140487175731008, + "relativeCreated": 6811.585903167725, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -14625,8 +14685,8 @@ "None", "" ], - "asctime": "2020-01-29 07:23:13,911", - "created": 1580278993.911111, + "asctime": "2020-12-21 22:32:56,118", + "created": 1608586376.11826, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -14636,14 +14696,14 @@ "lineno": 22, "message": "Result (Return Value (request instance) for struct_json_protocol.receive with data data_id 0xaffe): None ()", "module": "test", - "msecs": 911.1111164093018, + "msecs": 118.25990676879883, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 6803.512096405029, - "thread": 140487175731008, + "relativeCreated": 6811.9988441467285, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -14652,8 +14712,8 @@ "None", "" ], - "asctime": "2020-01-29 07:23:13,911", - "created": 1580278993.911246, + "asctime": "2020-12-21 22:32:56,118", + "created": 1608586376.118561, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -14663,35 +14723,35 @@ "lineno": 26, "message": "Expectation (Return Value (request instance) for struct_json_protocol.receive with data data_id 0xaffe): result = None ()", "module": "test", - "msecs": 911.2460613250732, + "msecs": 118.5610294342041, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 6803.647041320801, - "thread": 140487175731008, + "relativeCreated": 6812.299966812134, + "thread": 140534768363328, "threadName": "MainThread" } ], - "msecs": 911.3810062408447, + "msecs": 118.74794960021973, "msg": "Return Value (request instance) for struct_json_protocol.receive with data data_id 0xaffe is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 6803.781986236572, - "thread": 140487175731008, + "relativeCreated": 6812.486886978149, + "thread": 140534768363328, "threadName": "MainThread", - "time_consumption": 0.00013494491577148438 + "time_consumption": 0.000186920166015625 }, { "args": [ "None", "" ], - "asctime": "2020-01-29 07:23:14,012", - "created": 1580278994.012091, + "asctime": "2020-12-21 22:32:56,220", + "created": 1608586376.220166, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -14709,25 +14769,25 @@ "10", "45054" ], - "asctime": "2020-01-29 07:23:14,011", - "created": 1580278994.011745, + "asctime": "2020-12-21 22:32:56,219", + "created": 1608586376.21941, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 309, + "lineno": 327, "message": "SJP: TIMEOUT (0.1s): Requested data (service_id: 10; data_id: 45054) not in buffer.", "module": "__init__", - "msecs": 11.744976043701172, + "msecs": 219.40994262695312, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 6904.145956039429, - "thread": 140487175731008, + "relativeCreated": 6913.148880004883, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -14736,8 +14796,8 @@ "None", "" ], - "asctime": "2020-01-29 07:23:14,011", - "created": 1580278994.011912, + "asctime": "2020-12-21 22:32:56,219", + "created": 1608586376.219769, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -14747,14 +14807,14 @@ "lineno": 22, "message": "Result (Return Value (response instance) for struct_json_protocol.receive with data data_id 0xaffe): None ()", "module": "test", - "msecs": 11.912107467651367, + "msecs": 219.76900100708008, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 6904.313087463379, - "thread": 140487175731008, + "relativeCreated": 6913.50793838501, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -14763,8 +14823,8 @@ "None", "" ], - "asctime": "2020-01-29 07:23:14,012", - "created": 1580278994.01201, + "asctime": "2020-12-21 22:32:56,219", + "created": 1608586376.219986, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -14774,39 +14834,39 @@ "lineno": 26, "message": "Expectation (Return Value (response instance) for struct_json_protocol.receive with data data_id 0xaffe): result = None ()", "module": "test", - "msecs": 12.01009750366211, + "msecs": 219.9859619140625, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 6904.41107749939, - "thread": 140487175731008, + "relativeCreated": 6913.724899291992, + "thread": 140534768363328, "threadName": "MainThread" } ], - "msecs": 12.090921401977539, + "msecs": 220.16596794128418, "msg": "Return Value (response instance) for struct_json_protocol.receive with data data_id 0xaffe is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 6904.491901397705, - "thread": 140487175731008, + "relativeCreated": 6913.904905319214, + "thread": 140534768363328, "threadName": "MainThread", - "time_consumption": 8.082389831542969e-05 + "time_consumption": 0.0001800060272216797 } ], - "thread": 140487175731008, + "thread": 140534768363328, "threadName": "MainThread", - "time_consumption": 1.2093768119812012, - "time_finished": "2020-01-29 07:23:14,012", - "time_start": "2020-01-29 07:23:12,802" + "time_consumption": 1.2127978801727295, + "time_finished": "2020-12-21 22:32:56,220", + "time_start": "2020-12-21 22:32:55,007" }, "socket_protocol.struct_json_protocol: Send and receive check.": { "args": null, - "asctime": "2020-01-29 07:23:07,166", - "created": 1580278987.166036, + "asctime": "2020-12-21 22:32:49,336", + "created": 1608586369.336675, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -14817,18 +14877,18 @@ "message": "socket_protocol.struct_json_protocol: Send and receive check.", "module": "__init__", "moduleLogger": [], - "msecs": 166.03589057922363, + "msecs": 336.67492866516113, "msg": "socket_protocol.struct_json_protocol: Send and receive check.", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 58.43687057495117, + "relativeCreated": 30.41386604309082, "testcaseLogger": [ { "args": [], - "asctime": "2020-01-29 07:23:07,667", - "created": 1580278987.667939, + "asctime": "2020-12-21 22:32:49,839", + "created": 1608586369.839372, "exc_info": null, "exc_text": null, "filename": "test_normal_operation.py", @@ -14843,100 +14903,100 @@ "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:07,166", - "created": 1580278987.166226, + "asctime": "2020-12-21 22:32:49,336", + "created": 1608586369.336901, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 295, + "lineno": 313, "message": "SJP: Cleaning up receive-buffer", "module": "__init__", - "msecs": 166.22591018676758, + "msecs": 336.9009494781494, "msg": "%s Cleaning up receive-buffer", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 58.62689018249512, - "thread": 140487175731008, + "relativeCreated": 30.6398868560791, + "thread": 140534768363328, "threadName": "MainThread" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:07,166", - "created": 1580278987.166403, + "asctime": "2020-12-21 22:32:49,337", + "created": 1608586369.337075, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 199, + "lineno": 217, "message": "SJP: Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "module": "__init__", - "msecs": 166.40305519104004, + "msecs": 337.07499504089355, "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 58.80403518676758, - "thread": 140487175731008, + "relativeCreated": 30.813932418823242, + "thread": 140534768363328, "threadName": "MainThread" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:07,166", - "created": 1580278987.166469, + "asctime": "2020-12-21 22:32:49,337", + "created": 1608586369.337135, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 295, + "lineno": 313, "message": "SJP: Cleaning up receive-buffer", "module": "__init__", - "msecs": 166.46909713745117, + "msecs": 337.13507652282715, "msg": "%s Cleaning up receive-buffer", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 58.87007713317871, - "thread": 140487175731008, + "relativeCreated": 30.874013900756836, + "thread": 140534768363328, "threadName": "MainThread" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:07,166", - "created": 1580278987.166568, + "asctime": "2020-12-21 22:32:49,337", + "created": 1608586369.337222, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 199, + "lineno": 217, "message": "SJP: Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "module": "__init__", - "msecs": 166.56804084777832, + "msecs": 337.2220993041992, "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 58.96902084350586, - "thread": 140487175731008, + "relativeCreated": 30.961036682128906, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -14947,31 +15007,31 @@ 45054, "{u'test': u'test'}" ], - "asctime": "2020-01-29 07:23:07,166", - "created": 1580278987.166644, + "asctime": "2020-12-21 22:32:49,337", + "created": 1608586369.337291, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 334, + "lineno": 352, "message": "SJP: TX -> status: 0, service_id: 10, data_id: 45054, data: \"{u'test': u'test'}\"", "module": "__init__", - "msecs": 166.64409637451172, + "msecs": 337.29100227355957, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 59.04507637023926, - "thread": 140487175731008, + "relativeCreated": 31.029939651489258, + "thread": 140534768363328, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-01-29 07:23:07,166", - "created": 1580278987.166771, + "asctime": "2020-12-21 22:32:49,337", + "created": 1608586369.337406, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -14981,20 +15041,20 @@ "lineno": 55, "message": "Send data: (29): 00 00 00 00 00 00 00 0a 00 00 af fe 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 47", "module": "test_helpers", - "msecs": 166.77093505859375, + "msecs": 337.4059200286865, "msg": "Send data: (29): 00 00 00 00 00 00 00 0a 00 00 af fe 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 47", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 59.17191505432129, - "thread": 140487175731008, + "relativeCreated": 31.14485740661621, + "thread": 140534768363328, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-01-29 07:23:07,317", - "created": 1580278987.317266, + "asctime": "2020-12-21 22:32:49,488", + "created": 1608586369.488249, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -15004,14 +15064,14 @@ "lineno": 66, "message": "Receive data (29): 00 00 00 00 00 00 00 0a 00 00 af fe 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 47", "module": "test_helpers", - "msecs": 317.26598739624023, + "msecs": 488.2490634918213, "msg": "Receive data (29): 00 00 00 00 00 00 00 0a 00 00 af fe 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 47", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 209.66696739196777, - "thread": 140487116760832, + "relativeCreated": 181.98800086975098, + "thread": 140534747334400, "threadName": "Thread-1" }, { @@ -15022,25 +15082,25 @@ "45054", "{u'test': u'test'}" ], - "asctime": "2020-01-29 07:23:07,317", - "created": 1580278987.317452, + "asctime": "2020-12-21 22:32:49,488", + "created": 1608586369.48885, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 247, + "lineno": 265, "message": "SJP: RX <- status: 0, service_id: 10, data_id: 45054, data: \"{u'test': u'test'}\"", "module": "__init__", - "msecs": 317.45195388793945, + "msecs": 488.8501167297363, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 209.852933883667, - "thread": 140487116760832, + "relativeCreated": 182.58905410766602, + "thread": 140534747334400, "threadName": "Thread-1" }, { @@ -15048,25 +15108,25 @@ "SJP:", "response_data_method" ], - "asctime": "2020-01-29 07:23:07,317", - "created": 1580278987.317517, + "asctime": "2020-12-21 22:32:49,489", + "created": 1608586369.489085, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 264, + "lineno": 282, "message": "SJP: Executing callback response_data_method to process received data", "module": "__init__", - "msecs": 317.5170421600342, + "msecs": 489.08495903015137, "msg": "%s Executing callback %s to process received data", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 209.91802215576172, - "thread": 140487116760832, + "relativeCreated": 182.82389640808105, + "thread": 140534747334400, "threadName": "Thread-1" }, { @@ -15077,31 +15137,31 @@ 45054, "[1, 3, u's']" ], - "asctime": "2020-01-29 07:23:07,317", - "created": 1580278987.317577, + "asctime": "2020-12-21 22:32:49,489", + "created": 1608586369.48929, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 334, + "lineno": 352, "message": "SJP: TX -> status: 5, service_id: 11, data_id: 45054, data: \"[1, 3, u's']\"", "module": "__init__", - "msecs": 317.5768852233887, + "msecs": 489.2899990081787, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 209.9778652191162, - "thread": 140487116760832, + "relativeCreated": 183.0289363861084, + "thread": 140534747334400, "threadName": "Thread-1" }, { "args": [], - "asctime": "2020-01-29 07:23:07,317", - "created": 1580278987.317683, + "asctime": "2020-12-21 22:32:49,489", + "created": 1608586369.489674, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -15111,20 +15171,20 @@ "lineno": 55, "message": "Send data: (24): 00 00 00 05 00 00 00 0b 00 00 af fe 5b 31 2c 20 33 2c 20 22 73 22 5d 28", "module": "test_helpers", - "msecs": 317.68298149108887, + "msecs": 489.6740913391113, "msg": "Send data: (24): 00 00 00 05 00 00 00 0b 00 00 af fe 5b 31 2c 20 33 2c 20 22 73 22 5d 28", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 210.0839614868164, - "thread": 140487116760832, + "relativeCreated": 183.41302871704102, + "thread": 140534747334400, "threadName": "Thread-1" }, { "args": [], - "asctime": "2020-01-29 07:23:07,468", - "created": 1580278987.468086, + "asctime": "2020-12-21 22:32:49,640", + "created": 1608586369.640927, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -15134,14 +15194,14 @@ "lineno": 66, "message": "Receive data (24): 00 00 00 05 00 00 00 0b 00 00 af fe 5b 31 2c 20 33 2c 20 22 73 22 5d 28", "module": "test_helpers", - "msecs": 468.08600425720215, + "msecs": 640.9270763397217, "msg": "Receive data (24): 00 00 00 05 00 00 00 0b 00 00 af fe 5b 31 2c 20 33 2c 20 22 73 22 5d 28", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 360.4869842529297, - "thread": 140487038072576, + "relativeCreated": 334.66601371765137, + "thread": 140534738941696, "threadName": "Thread-2" }, { @@ -15152,25 +15212,25 @@ "45054", "[1, 3, u's']" ], - "asctime": "2020-01-29 07:23:07,468", - "created": 1580278987.468288, + "asctime": "2020-12-21 22:32:49,641", + "created": 1608586369.641444, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 247, + "lineno": 265, "message": "SJP: RX <- status: 5, service_id: 11, data_id: 45054, data: \"[1, 3, u's']\"", "module": "__init__", - "msecs": 468.2879447937012, + "msecs": 641.4439678192139, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 360.6889247894287, - "thread": 140487038072576, + "relativeCreated": 335.18290519714355, + "thread": 140534738941696, "threadName": "Thread-2" }, { @@ -15178,71 +15238,71 @@ "SJP:", "Operation not permitted" ], - "asctime": "2020-01-29 07:23:07,468", - "created": 1580278987.468399, + "asctime": "2020-12-21 22:32:49,641", + "created": 1608586369.641723, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "WARNING", "levelno": 30, - "lineno": 274, + "lineno": 292, "message": "SJP: Received message has a peculiar status: Operation not permitted", "module": "__init__", - "msecs": 468.3990478515625, + "msecs": 641.7229175567627, "msg": "%s Received message has a peculiar status: %s", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 360.80002784729004, - "thread": 140487038072576, + "relativeCreated": 335.4618549346924, + "thread": 140534738941696, "threadName": "Thread-2" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:07,468", - "created": 1580278987.468471, + "asctime": "2020-12-21 22:32:49,641", + "created": 1608586369.641946, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 292, + "lineno": 310, "message": "SJP: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 468.4710502624512, + "msecs": 641.9460773468018, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 360.8720302581787, - "thread": 140487038072576, + "relativeCreated": 335.68501472473145, + "thread": 140534738941696, "threadName": "Thread-2" } ], - "msecs": 667.9389476776123, + "msecs": 839.371919631958, "msg": "Send and received data by struct_json_protocol.", "name": "__tLogger__", "pathname": "src/tests/test_normal_operation.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 560.3399276733398, - "thread": 140487175731008, + "relativeCreated": 533.1108570098877, + "thread": 140534768363328, "threadName": "MainThread", - "time_consumption": 0.19946789741516113 + "time_consumption": 0.19742584228515625 }, { "args": [ "True", "" ], - "asctime": "2020-01-29 07:23:07,668", - "created": 1580278987.668299, + "asctime": "2020-12-21 22:32:49,840", + "created": 1608586369.840266, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -15259,8 +15319,8 @@ "True", "" ], - "asctime": "2020-01-29 07:23:07,668", - "created": 1580278987.668155, + "asctime": "2020-12-21 22:32:49,839", + "created": 1608586369.839868, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -15270,14 +15330,14 @@ "lineno": 22, "message": "Result (Return value of send method): True ()", "module": "test", - "msecs": 668.1549549102783, + "msecs": 839.8680686950684, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 560.5559349060059, - "thread": 140487175731008, + "relativeCreated": 533.607006072998, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -15286,8 +15346,8 @@ "True", "" ], - "asctime": "2020-01-29 07:23:07,668", - "created": 1580278987.668236, + "asctime": "2020-12-21 22:32:49,840", + "created": 1608586369.840065, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -15297,35 +15357,35 @@ "lineno": 26, "message": "Expectation (Return value of send method): result = True ()", "module": "test", - "msecs": 668.2360172271729, + "msecs": 840.0650024414062, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 560.6369972229004, - "thread": 140487175731008, + "relativeCreated": 533.8039398193359, + "thread": 140534768363328, "threadName": "MainThread" } ], - "msecs": 668.2989597320557, + "msecs": 840.2659893035889, "msg": "Return value of send method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 560.6999397277832, - "thread": 140487175731008, + "relativeCreated": 534.0049266815186, + "thread": 140534768363328, "threadName": "MainThread", - "time_consumption": 6.29425048828125e-05 + "time_consumption": 0.0002009868621826172 }, { "args": [ "0", "" ], - "asctime": "2020-01-29 07:23:07,668", - "created": 1580278987.66849, + "asctime": "2020-12-21 22:32:49,840", + "created": 1608586369.840878, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -15342,8 +15402,8 @@ "0", "" ], - "asctime": "2020-01-29 07:23:07,668", - "created": 1580278987.668388, + "asctime": "2020-12-21 22:32:49,840", + "created": 1608586369.840526, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -15353,14 +15413,14 @@ "lineno": 22, "message": "Result (Request Status (Okay) transfered via struct_json_protocol): 0 ()", "module": "test", - "msecs": 668.3878898620605, + "msecs": 840.5261039733887, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 560.7888698577881, - "thread": 140487175731008, + "relativeCreated": 534.2650413513184, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -15369,8 +15429,8 @@ "0", "" ], - "asctime": "2020-01-29 07:23:07,668", - "created": 1580278987.668442, + "asctime": "2020-12-21 22:32:49,840", + "created": 1608586369.840682, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -15380,35 +15440,35 @@ "lineno": 26, "message": "Expectation (Request Status (Okay) transfered via struct_json_protocol): result = 0 ()", "module": "test", - "msecs": 668.4420108795166, + "msecs": 840.6820297241211, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 560.8429908752441, - "thread": 140487175731008, + "relativeCreated": 534.4209671020508, + "thread": 140534768363328, "threadName": "MainThread" } ], - "msecs": 668.489933013916, + "msecs": 840.8780097961426, "msg": "Request Status (Okay) transfered via struct_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 560.8909130096436, - "thread": 140487175731008, + "relativeCreated": 534.6169471740723, + "thread": 140534768363328, "threadName": "MainThread", - "time_consumption": 4.792213439941406e-05 + "time_consumption": 0.00019598007202148438 }, { "args": [ "{u'test': u'test'}", "" ], - "asctime": "2020-01-29 07:23:07,668", - "created": 1580278987.66868, + "asctime": "2020-12-21 22:32:49,841", + "created": 1608586369.841519, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -15425,8 +15485,8 @@ "{ u'test': u'test' }", "" ], - "asctime": "2020-01-29 07:23:07,668", - "created": 1580278987.668573, + "asctime": "2020-12-21 22:32:49,841", + "created": 1608586369.84115, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -15436,14 +15496,14 @@ "lineno": 22, "message": "Result (Request Data transfered via struct_json_protocol): { u'test': u'test' } ()", "module": "test", - "msecs": 668.5729026794434, + "msecs": 841.1500453948975, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 560.9738826751709, - "thread": 140487175731008, + "relativeCreated": 534.8889827728271, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -15452,8 +15512,8 @@ "{ u'test': u'test' }", "" ], - "asctime": "2020-01-29 07:23:07,668", - "created": 1580278987.668621, + "asctime": "2020-12-21 22:32:49,841", + "created": 1608586369.841311, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -15463,35 +15523,35 @@ "lineno": 26, "message": "Expectation (Request Data transfered via struct_json_protocol): result = { u'test': u'test' } ()", "module": "test", - "msecs": 668.6210632324219, + "msecs": 841.310977935791, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 561.0220432281494, - "thread": 140487175731008, + "relativeCreated": 535.0499153137207, + "thread": 140534768363328, "threadName": "MainThread" } ], - "msecs": 668.67995262146, + "msecs": 841.5191173553467, "msg": "Request Data transfered via struct_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 561.0809326171875, - "thread": 140487175731008, + "relativeCreated": 535.2580547332764, + "thread": 140534768363328, "threadName": "MainThread", - "time_consumption": 5.888938903808594e-05 + "time_consumption": 0.00020813941955566406 }, { "args": [ "5", "" ], - "asctime": "2020-01-29 07:23:07,668", - "created": 1580278987.668838, + "asctime": "2020-12-21 22:32:49,842", + "created": 1608586369.842065, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -15508,8 +15568,8 @@ "5", "" ], - "asctime": "2020-01-29 07:23:07,668", - "created": 1580278987.668754, + "asctime": "2020-12-21 22:32:49,841", + "created": 1608586369.841769, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -15519,14 +15579,14 @@ "lineno": 22, "message": "Result (Response Status (Operation not permitted) transfered via struct_json_protocol): 5 ()", "module": "test", - "msecs": 668.7541007995605, + "msecs": 841.7689800262451, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 561.1550807952881, - "thread": 140487175731008, + "relativeCreated": 535.5079174041748, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -15535,8 +15595,8 @@ "5", "" ], - "asctime": "2020-01-29 07:23:07,668", - "created": 1580278987.668796, + "asctime": "2020-12-21 22:32:49,841", + "created": 1608586369.841919, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -15546,35 +15606,35 @@ "lineno": 26, "message": "Expectation (Response Status (Operation not permitted) transfered via struct_json_protocol): result = 5 ()", "module": "test", - "msecs": 668.7960624694824, + "msecs": 841.9189453125, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 561.19704246521, - "thread": 140487175731008, + "relativeCreated": 535.6578826904297, + "thread": 140534768363328, "threadName": "MainThread" } ], - "msecs": 668.8380241394043, + "msecs": 842.0650959014893, "msg": "Response Status (Operation not permitted) transfered via struct_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 561.2390041351318, - "thread": 140487175731008, + "relativeCreated": 535.804033279419, + "thread": 140534768363328, "threadName": "MainThread", - "time_consumption": 4.1961669921875e-05 + "time_consumption": 0.0001461505889892578 }, { "args": [ "[1, 3, u's']", "" ], - "asctime": "2020-01-29 07:23:07,669", - "created": 1580278987.669012, + "asctime": "2020-12-21 22:32:49,842", + "created": 1608586369.842719, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -15591,8 +15651,8 @@ "[ 1, 3, u's' ]", "" ], - "asctime": "2020-01-29 07:23:07,668", - "created": 1580278987.668911, + "asctime": "2020-12-21 22:32:49,842", + "created": 1608586369.842329, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -15602,14 +15662,14 @@ "lineno": 22, "message": "Result (Response Data transfered via struct_json_protocol): [ 1, 3, u's' ] ()", "module": "test", - "msecs": 668.9109802246094, + "msecs": 842.3290252685547, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 561.3119602203369, - "thread": 140487175731008, + "relativeCreated": 536.0679626464844, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -15618,8 +15678,8 @@ "[ 1, 3, u's' ]", "" ], - "asctime": "2020-01-29 07:23:07,668", - "created": 1580278987.668955, + "asctime": "2020-12-21 22:32:49,842", + "created": 1608586369.842491, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -15629,35 +15689,35 @@ "lineno": 26, "message": "Expectation (Response Data transfered via struct_json_protocol): result = [ 1, 3, u's' ] ()", "module": "test", - "msecs": 668.9550876617432, + "msecs": 842.4909114837646, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 561.3560676574707, - "thread": 140487175731008, + "relativeCreated": 536.2298488616943, + "thread": 140534768363328, "threadName": "MainThread" } ], - "msecs": 669.0120697021484, + "msecs": 842.7190780639648, "msg": "Response Data transfered via struct_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 561.413049697876, - "thread": 140487175731008, + "relativeCreated": 536.4580154418945, + "thread": 140534768363328, "threadName": "MainThread", - "time_consumption": 5.698204040527344e-05 + "time_consumption": 0.0002281665802001953 }, { "args": [ "None", "" ], - "asctime": "2020-01-29 07:23:07,769", - "created": 1580278987.7696, + "asctime": "2020-12-21 22:32:49,944", + "created": 1608586369.944515, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -15675,25 +15735,25 @@ "11", "45054" ], - "asctime": "2020-01-29 07:23:07,769", - "created": 1580278987.769294, + "asctime": "2020-12-21 22:32:49,943", + "created": 1608586369.943269, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 309, + "lineno": 327, "message": "SJP: TIMEOUT (0.1s): Requested data (service_id: 11; data_id: 45054) not in buffer.", "module": "__init__", - "msecs": 769.294023513794, + "msecs": 943.2690143585205, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 661.6950035095215, - "thread": 140487175731008, + "relativeCreated": 637.0079517364502, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -15702,8 +15762,8 @@ "None", "" ], - "asctime": "2020-01-29 07:23:07,769", - "created": 1580278987.76945, + "asctime": "2020-12-21 22:32:49,943", + "created": 1608586369.943811, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -15713,14 +15773,14 @@ "lineno": 22, "message": "Result (Return Value (request instance) for struct_json_protocol.receive with data data_id 0xaffe): None ()", "module": "test", - "msecs": 769.4499492645264, + "msecs": 943.8109397888184, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 661.8509292602539, - "thread": 140487175731008, + "relativeCreated": 637.549877166748, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -15729,8 +15789,8 @@ "None", "" ], - "asctime": "2020-01-29 07:23:07,769", - "created": 1580278987.769535, + "asctime": "2020-12-21 22:32:49,944", + "created": 1608586369.944175, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -15740,35 +15800,35 @@ "lineno": 26, "message": "Expectation (Return Value (request instance) for struct_json_protocol.receive with data data_id 0xaffe): result = None ()", "module": "test", - "msecs": 769.5350646972656, + "msecs": 944.1750049591064, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 661.9360446929932, - "thread": 140487175731008, + "relativeCreated": 637.9139423370361, + "thread": 140534768363328, "threadName": "MainThread" } ], - "msecs": 769.5999145507812, + "msecs": 944.5149898529053, "msg": "Return Value (request instance) for struct_json_protocol.receive with data data_id 0xaffe is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 662.0008945465088, - "thread": 140487175731008, + "relativeCreated": 638.253927230835, + "thread": 140534768363328, "threadName": "MainThread", - "time_consumption": 6.4849853515625e-05 + "time_consumption": 0.0003399848937988281 }, { "args": [ "None", "" ], - "asctime": "2020-01-29 07:23:07,870", - "created": 1580278987.87046, + "asctime": "2020-12-21 22:32:50,045", + "created": 1608586370.045552, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -15786,25 +15846,25 @@ "10", "45054" ], - "asctime": "2020-01-29 07:23:07,870", - "created": 1580278987.870104, + "asctime": "2020-12-21 22:32:50,045", + "created": 1608586370.045087, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 309, + "lineno": 327, "message": "SJP: TIMEOUT (0.1s): Requested data (service_id: 10; data_id: 45054) not in buffer.", "module": "__init__", - "msecs": 870.1040744781494, + "msecs": 45.08709907531738, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 762.505054473877, - "thread": 140487175731008, + "relativeCreated": 738.8260364532471, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -15813,8 +15873,8 @@ "None", "" ], - "asctime": "2020-01-29 07:23:07,870", - "created": 1580278987.870286, + "asctime": "2020-12-21 22:32:50,045", + "created": 1608586370.04533, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -15824,14 +15884,14 @@ "lineno": 22, "message": "Result (Return Value (response instance) for struct_json_protocol.receive with data data_id 0xaffe): None ()", "module": "test", - "msecs": 870.2859878540039, + "msecs": 45.330047607421875, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 762.6869678497314, - "thread": 140487175731008, + "relativeCreated": 739.0689849853516, + "thread": 140534768363328, "threadName": "MainThread" }, { @@ -15840,8 +15900,8 @@ "None", "" ], - "asctime": "2020-01-29 07:23:07,870", - "created": 1580278987.870383, + "asctime": "2020-12-21 22:32:50,045", + "created": 1608586370.045448, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -15851,38 +15911,38 @@ "lineno": 26, "message": "Expectation (Return Value (response instance) for struct_json_protocol.receive with data data_id 0xaffe): result = None ()", "module": "test", - "msecs": 870.3830242156982, + "msecs": 45.44806480407715, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 762.7840042114258, - "thread": 140487175731008, + "relativeCreated": 739.1870021820068, + "thread": 140534768363328, "threadName": "MainThread" } ], - "msecs": 870.460033416748, + "msecs": 45.55201530456543, "msg": "Return Value (response instance) for struct_json_protocol.receive with data data_id 0xaffe is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7115, + "process": 115431, "processName": "MainProcess", - "relativeCreated": 762.8610134124756, - "thread": 140487175731008, + "relativeCreated": 739.2909526824951, + "thread": 140534768363328, "threadName": "MainThread", - "time_consumption": 7.700920104980469e-05 + "time_consumption": 0.00010395050048828125 } ], - "thread": 140487175731008, + "thread": 140534768363328, "threadName": "MainThread", - "time_consumption": 0.7044241428375244, - "time_finished": "2020-01-29 07:23:07,870", - "time_start": "2020-01-29 07:23:07,166" + "time_consumption": 0.7088770866394043, + "time_finished": "2020-12-21 22:32:50,045", + "time_start": "2020-12-21 22:32:49,336" } }, "testrun_id": "p2", - "time_consumption": 11.291115999221802, + "time_consumption": 11.323579788208008, "uid_list_sorted": [ "socket_protocol.struct_json_protocol: Send and receive check.", "socket_protocol.pure_json_protocol: Send and receive check.", @@ -15903,7 +15963,7 @@ }, { "heading_dict": {}, - "interpreter": "python 3.6.9 (final)", + "interpreter": "python 3.8.5 (final)", "name": "Default Testsession name", "number_of_failed_tests": 0, "number_of_possibly_failed_tests": 0, @@ -15919,8 +15979,8 @@ "testcases": { "socket_protocol.pure_json_protocol: Authentification processed without secret.": { "args": null, - "asctime": "2020-01-29 07:23:29,909", - "created": 1580279009.9094899, + "asctime": "2020-12-21 22:33:12,089", + "created": 1608586392.0895512, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -15931,19 +15991,19 @@ "message": "socket_protocol.pure_json_protocol: Authentification processed without secret.", "module": "__init__", "moduleLogger": [], - "msecs": 909.4898700714111, + "msecs": 89.55121040344238, "msg": "socket_protocol.pure_json_protocol: Authentification processed without secret.", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 10985.539674758911, + "relativeCreated": 11001.858234405518, "stack_info": null, "testcaseLogger": [ { "args": [], - "asctime": "2020-01-29 07:23:29,910", - "created": 1580279009.910575, + "asctime": "2020-12-21 22:33:12,090", + "created": 1608586392.090681, "exc_info": null, "exc_text": null, "filename": "test_handling_errors.py", @@ -15958,126 +16018,126 @@ "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:29,909", - "created": 1580279009.9099371, + "asctime": "2020-12-21 22:33:12,089", + "created": 1608586392.0898035, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 295, + "lineno": 313, "message": "SJP: Cleaning up receive-buffer", "module": "__init__", - "msecs": 909.9371433258057, + "msecs": 89.80345726013184, "msg": "%s Cleaning up receive-buffer", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 10985.986948013306, + "relativeCreated": 11002.110481262207, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:29,910", - "created": 1580279009.9101686, + "asctime": "2020-12-21 22:33:12,090", + "created": 1608586392.0900793, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 199, + "lineno": 217, "message": "SJP: Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "module": "__init__", - "msecs": 910.1686477661133, + "msecs": 90.07930755615234, "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 10986.218452453613, + "relativeCreated": 11002.386331558228, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:29,910", - "created": 1580279009.9102974, + "asctime": "2020-12-21 22:33:12,090", + "created": 1608586392.0902584, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 295, + "lineno": 313, "message": "SJP: Cleaning up receive-buffer", "module": "__init__", - "msecs": 910.2973937988281, + "msecs": 90.25835990905762, "msg": "%s Cleaning up receive-buffer", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 10986.347198486328, + "relativeCreated": 11002.565383911133, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:29,910", - "created": 1580279009.91046, + "asctime": "2020-12-21 22:33:12,090", + "created": 1608586392.090507, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 199, + "lineno": 217, "message": "SJP: Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "module": "__init__", - "msecs": 910.4599952697754, + "msecs": 90.50703048706055, "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 10986.509799957275, + "relativeCreated": 11002.814054489136, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" } ], - "msecs": 910.5749130249023, + "msecs": 90.68107604980469, "msg": "Authentification with no secret definition (pure_json_protocol).", "name": "__tLogger__", "pathname": "src/tests/test_handling_errors.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 10986.624717712402, + "relativeCreated": 11002.98810005188, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread", - "time_consumption": 0.00011491775512695312 + "time_consumption": 0.00017404556274414062 }, { "args": [ "False", "" ], - "asctime": "2020-01-29 07:23:29,910", - "created": 1580279009.9108698, + "asctime": "2020-12-21 22:33:12,091", + "created": 1608586392.0913703, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -16094,8 +16154,8 @@ "False", "" ], - "asctime": "2020-01-29 07:23:29,910", - "created": 1580279009.9107075, + "asctime": "2020-12-21 22:33:12,090", + "created": 1608586392.0909271, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -16105,15 +16165,15 @@ "lineno": 22, "message": "Result (Return value of authentification): False ()", "module": "test", - "msecs": 910.7074737548828, + "msecs": 90.9271240234375, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 10986.757278442383, + "relativeCreated": 11003.234148025513, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -16122,8 +16182,8 @@ "False", "" ], - "asctime": "2020-01-29 07:23:29,910", - "created": 1580279009.9107873, + "asctime": "2020-12-21 22:33:12,091", + "created": 1608586392.0911827, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -16133,41 +16193,41 @@ "lineno": 26, "message": "Expectation (Return value of authentification): result = False ()", "module": "test", - "msecs": 910.7873439788818, + "msecs": 91.18270874023438, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 10986.837148666382, + "relativeCreated": 11003.48973274231, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" } ], - "msecs": 910.869836807251, + "msecs": 91.3703441619873, "msg": "Return value of authentification is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 10986.919641494751, + "relativeCreated": 11003.677368164062, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread", - "time_consumption": 8.249282836914062e-05 + "time_consumption": 0.0001876354217529297 } ], - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread", - "time_consumption": 0.0013799667358398438, - "time_finished": "2020-01-29 07:23:29,910", - "time_start": "2020-01-29 07:23:29,909" + "time_consumption": 0.0018191337585449219, + "time_finished": "2020-12-21 22:33:12,091", + "time_start": "2020-12-21 22:33:12,089" }, "socket_protocol.pure_json_protocol: Authentification required, but not processed/ correctly processed.": { "args": null, - "asctime": "2020-01-29 07:23:28,483", - "created": 1580279008.4838932, + "asctime": "2020-12-21 22:33:10,675", + "created": 1608586390.675439, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -16178,19 +16238,19 @@ "message": "socket_protocol.pure_json_protocol: Authentification required, but not processed/ correctly processed.", "module": "__init__", "moduleLogger": [], - "msecs": 483.89315605163574, + "msecs": 675.4388809204102, "msg": "socket_protocol.pure_json_protocol: Authentification required, but not processed/ correctly processed.", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 9559.942960739136, + "relativeCreated": 9587.745904922485, "stack_info": null, "testcaseLogger": [ { "args": [], - "asctime": "2020-01-29 07:23:29,702", - "created": 1580279009.702203, + "asctime": "2020-12-21 22:33:11,882", + "created": 1608586391.882332, "exc_info": null, "exc_text": null, "filename": "test_handling_errors.py", @@ -16205,130 +16265,130 @@ "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:28,484", - "created": 1580279008.484061, + "asctime": "2020-12-21 22:33:10,675", + "created": 1608586390.6757958, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 295, + "lineno": 313, "message": "SJP: Cleaning up receive-buffer", "module": "__init__", - "msecs": 484.06100273132324, + "msecs": 675.7957935333252, "msg": "%s Cleaning up receive-buffer", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 9560.110807418823, + "relativeCreated": 9588.1028175354, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:28,484", - "created": 1580279008.4842064, + "asctime": "2020-12-21 22:33:10,676", + "created": 1608586390.6760828, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 199, + "lineno": 217, "message": "SJP: Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "module": "__init__", - "msecs": 484.2064380645752, + "msecs": 676.0828495025635, "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 9560.256242752075, + "relativeCreated": 9588.389873504639, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:28,484", - "created": 1580279008.4842951, + "asctime": "2020-12-21 22:33:10,676", + "created": 1608586390.6762457, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 295, + "lineno": 313, "message": "SJP: Cleaning up receive-buffer", "module": "__init__", - "msecs": 484.295129776001, + "msecs": 676.2456893920898, "msg": "%s Cleaning up receive-buffer", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 9560.344934463501, + "relativeCreated": 9588.552713394165, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:28,484", - "created": 1580279008.484414, + "asctime": "2020-12-21 22:33:10,676", + "created": 1608586390.67647, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 199, + "lineno": 217, "message": "SJP: Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "module": "__init__", - "msecs": 484.41410064697266, + "msecs": 676.4700412750244, "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 9560.463905334473, + "relativeCreated": 9588.7770652771, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:28,484", - "created": 1580279008.4845006, + "asctime": "2020-12-21 22:33:10,676", + "created": 1608586390.6766467, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "authentificate", "levelname": "INFO", "levelno": 20, - "lineno": 378, + "lineno": 396, "message": "SJP: Requesting seed for authentification", "module": "__init__", - "msecs": 484.5006465911865, + "msecs": 676.6467094421387, "msg": "%s Requesting seed for authentification", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 9560.550451278687, + "relativeCreated": 9588.953733444214, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -16339,32 +16399,32 @@ 0, "None" ], - "asctime": "2020-01-29 07:23:28,484", - "created": 1580279008.484575, + "asctime": "2020-12-21 22:33:10,676", + "created": 1608586390.6768377, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 334, + "lineno": 352, "message": "SJP: TX -> status: 0, service_id: 1, data_id: 0, data: \"None\"", "module": "__init__", - "msecs": 484.5750331878662, + "msecs": 676.837682723999, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 9560.624837875366, + "relativeCreated": 9589.144706726074, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-01-29 07:23:28,484", - "created": 1580279008.484769, + "asctime": "2020-12-21 22:33:10,677", + "created": 1608586390.6771688, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -16374,21 +16434,21 @@ "lineno": 55, "message": "Send data: (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 9e 85 7b 8d", "module": "test_helpers", - "msecs": 484.7691059112549, + "msecs": 677.1688461303711, "msg": "Send data: (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 9e 85 7b 8d", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 9560.818910598755, + "relativeCreated": 9589.475870132446, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-01-29 07:23:28,639", - "created": 1580279008.6394503, + "asctime": "2020-12-21 22:33:10,827", + "created": 1608586390.8279712, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -16398,15 +16458,15 @@ "lineno": 66, "message": "Receive data (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 9e 85 7b 8d", "module": "test_helpers", - "msecs": 639.4503116607666, + "msecs": 827.9712200164795, "msg": "Receive data (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 9e 85 7b 8d", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 9715.500116348267, + "relativeCreated": 9740.278244018555, "stack_info": null, - "thread": 139631570671360, + "thread": 139622152926976, "threadName": "Thread-26" }, { @@ -16417,26 +16477,26 @@ "0", "None" ], - "asctime": "2020-01-29 07:23:28,639", - "created": 1580279008.6396852, + "asctime": "2020-12-21 22:33:10,828", + "created": 1608586390.828376, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 247, + "lineno": 259, "message": "SJP: RX <- status: 0, service_id: 1, data_id: 0, data: \"None\"", "module": "__init__", - "msecs": 639.6851539611816, + "msecs": 828.376054763794, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 9715.734958648682, + "relativeCreated": 9740.68307876587, "stack_info": null, - "thread": 139631570671360, + "thread": 139622152926976, "threadName": "Thread-26" }, { @@ -16444,52 +16504,52 @@ "SJP:", "__authentificate_create_seed__" ], - "asctime": "2020-01-29 07:23:28,639", - "created": 1580279008.6397922, + "asctime": "2020-12-21 22:33:10,828", + "created": 1608586390.8286057, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 264, + "lineno": 282, "message": "SJP: Executing callback __authentificate_create_seed__ to process received data", "module": "__init__", - "msecs": 639.7922039031982, + "msecs": 828.6056518554688, "msg": "%s Executing callback %s to process received data", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 9715.842008590698, + "relativeCreated": 9740.912675857544, "stack_info": null, - "thread": 139631570671360, + "thread": 139622152926976, "threadName": "Thread-26" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:28,639", - "created": 1580279008.639863, + "asctime": "2020-12-21 22:33:10,828", + "created": 1608586390.828802, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentificate_create_seed__", "levelname": "INFO", "levelno": 20, - "lineno": 404, + "lineno": 422, "message": "SJP: Got seed request, sending seed for authentification", "module": "__init__", - "msecs": 639.8630142211914, + "msecs": 828.8021087646484, "msg": "%s Got seed request, sending seed for authentification", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 9715.912818908691, + "relativeCreated": 9741.109132766724, "stack_info": null, - "thread": 139631570671360, + "thread": 139622152926976, "threadName": "Thread-26" }, { @@ -16498,34 +16558,34 @@ 0, 2, 0, - "'205036432263afdaefea69b4b21e10d2d5bbe93328b62442c834b9de746bd22f'" + "'8492ca6edb9887708423c0282c2fb75d3b297a461f4fdee4dfec8a0f0028bc43'" ], - "asctime": "2020-01-29 07:23:28,639", - "created": 1580279008.6399662, + "asctime": "2020-12-21 22:33:10,829", + "created": 1608586390.8290029, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 334, - "message": "SJP: TX -> status: 0, service_id: 2, data_id: 0, data: \"'205036432263afdaefea69b4b21e10d2d5bbe93328b62442c834b9de746bd22f'\"", + "lineno": 352, + "message": "SJP: TX -> status: 0, service_id: 2, data_id: 0, data: \"'8492ca6edb9887708423c0282c2fb75d3b297a461f4fdee4dfec8a0f0028bc43'\"", "module": "__init__", - "msecs": 639.9662494659424, + "msecs": 829.002857208252, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 9716.016054153442, + "relativeCreated": 9741.309881210327, "stack_info": null, - "thread": 139631570671360, + "thread": 139622152926976, "threadName": "Thread-26" }, { "args": [], - "asctime": "2020-01-29 07:23:28,640", - "created": 1580279008.6401997, + "asctime": "2020-12-21 22:33:10,829", + "created": 1608586390.8294759, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -16533,23 +16593,23 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 55, - "message": "Send data: (124): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 32 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 32 30 35 30 33 36 34 33 32 32 36 33 61 66 64 61 65 66 65 61 36 39 62 34 62 32 31 65 31 30 64 32 64 35 62 62 65 39 33 33 32 38 62 36 32 34 34 32 63 38 33 34 62 39 64 65 37 34 36 62 64 32 32 66 22 7d 98 1d 5c a6", + "message": "Send data: (124): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 32 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 38 34 39 32 63 61 36 65 64 62 39 38 38 37 37 30 38 34 32 33 63 30 32 38 32 63 32 66 62 37 35 64 33 62 32 39 37 61 34 36 31 66 34 66 64 65 65 34 64 66 65 63 38 61 30 66 30 30 32 38 62 63 34 33 22 7d b3 21 58 a4", "module": "test_helpers", - "msecs": 640.1996612548828, - "msg": "Send data: (124): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 32 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 32 30 35 30 33 36 34 33 32 32 36 33 61 66 64 61 65 66 65 61 36 39 62 34 62 32 31 65 31 30 64 32 64 35 62 62 65 39 33 33 32 38 62 36 32 34 34 32 63 38 33 34 62 39 64 65 37 34 36 62 64 32 32 66 22 7d 98 1d 5c a6", + "msecs": 829.4758796691895, + "msg": "Send data: (124): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 32 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 38 34 39 32 63 61 36 65 64 62 39 38 38 37 37 30 38 34 32 33 63 30 32 38 32 63 32 66 62 37 35 64 33 62 32 39 37 61 34 36 31 66 34 66 64 65 65 34 64 66 65 63 38 61 30 66 30 30 32 38 62 63 34 33 22 7d b3 21 58 a4", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 9716.249465942383, + "relativeCreated": 9741.782903671265, "stack_info": null, - "thread": 139631570671360, + "thread": 139622152926976, "threadName": "Thread-26" }, { "args": [], - "asctime": "2020-01-29 07:23:28,799", - "created": 1580279008.7995312, + "asctime": "2020-12-21 22:33:10,980", + "created": 1608586390.9806073, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -16557,17 +16617,17 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 66, - "message": "Receive data (124): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 32 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 32 30 35 30 33 36 34 33 32 32 36 33 61 66 64 61 65 66 65 61 36 39 62 34 62 32 31 65 31 30 64 32 64 35 62 62 65 39 33 33 32 38 62 36 32 34 34 32 63 38 33 34 62 39 64 65 37 34 36 62 64 32 32 66 22 7d 98 1d 5c a6", + "message": "Receive data (124): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 32 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 38 34 39 32 63 61 36 65 64 62 39 38 38 37 37 30 38 34 32 33 63 30 32 38 32 63 32 66 62 37 35 64 33 62 32 39 37 61 34 36 31 66 34 66 64 65 65 34 64 66 65 63 38 61 30 66 30 30 32 38 62 63 34 33 22 7d b3 21 58 a4", "module": "test_helpers", - "msecs": 799.5312213897705, - "msg": "Receive data (124): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 32 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 32 30 35 30 33 36 34 33 32 32 36 33 61 66 64 61 65 66 65 61 36 39 62 34 62 32 31 65 31 30 64 32 64 35 62 62 65 39 33 33 32 38 62 36 32 34 34 32 63 38 33 34 62 39 64 65 37 34 36 62 64 32 32 66 22 7d 98 1d 5c a6", + "msecs": 980.607271194458, + "msg": "Receive data (124): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 32 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 38 34 39 32 63 61 36 65 64 62 39 38 38 37 37 30 38 34 32 33 63 30 32 38 32 63 32 66 62 37 35 64 33 62 32 39 37 61 34 36 31 66 34 66 64 65 65 34 64 66 65 63 38 61 30 66 30 30 32 38 62 63 34 33 22 7d b3 21 58 a4", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 9875.58102607727, + "relativeCreated": 9892.914295196533, "stack_info": null, - "thread": 139631579064064, + "thread": 139622161319680, "threadName": "Thread-27" }, { @@ -16576,28 +16636,28 @@ "0", "2", "0", - "'205036432263afdaefea69b4b21e10d2d5bbe93328b62442c834b9de746bd22f'" + "'8492ca6edb9887708423c0282c2fb75d3b297a461f4fdee4dfec8a0f0028bc43'" ], - "asctime": "2020-01-29 07:23:28,800", - "created": 1580279008.8006735, + "asctime": "2020-12-21 22:33:10,981", + "created": 1608586390.981065, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 247, - "message": "SJP: RX <- status: 0, service_id: 2, data_id: 0, data: \"'205036432263afdaefea69b4b21e10d2d5bbe93328b62442c834b9de746bd22f'\"", + "lineno": 259, + "message": "SJP: RX <- status: 0, service_id: 2, data_id: 0, data: \"'8492ca6edb9887708423c0282c2fb75d3b297a461f4fdee4dfec8a0f0028bc43'\"", "module": "__init__", - "msecs": 800.6734848022461, + "msecs": 981.065034866333, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 9876.723289489746, + "relativeCreated": 9893.372058868408, "stack_info": null, - "thread": 139631579064064, + "thread": 139622161319680, "threadName": "Thread-27" }, { @@ -16605,52 +16665,52 @@ "SJP:", "__authentificate_create_key__" ], - "asctime": "2020-01-29 07:23:28,801", - "created": 1580279008.8011076, + "asctime": "2020-12-21 22:33:10,981", + "created": 1608586390.9812806, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 264, + "lineno": 282, "message": "SJP: Executing callback __authentificate_create_key__ to process received data", "module": "__init__", - "msecs": 801.10764503479, + "msecs": 981.2805652618408, "msg": "%s Executing callback %s to process received data", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 9877.15744972229, + "relativeCreated": 9893.587589263916, "stack_info": null, - "thread": 139631579064064, + "thread": 139622161319680, "threadName": "Thread-27" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:28,801", - "created": 1580279008.8014088, + "asctime": "2020-12-21 22:33:10,981", + "created": 1608586390.9814525, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentificate_create_key__", "levelname": "INFO", "levelno": 20, - "lineno": 413, + "lineno": 431, "message": "SJP: Got seed, sending key for authentification", "module": "__init__", - "msecs": 801.4087677001953, + "msecs": 981.452465057373, "msg": "%s Got seed, sending key for authentification", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 9877.458572387695, + "relativeCreated": 9893.759489059448, "stack_info": null, - "thread": 139631579064064, + "thread": 139622161319680, "threadName": "Thread-27" }, { @@ -16659,34 +16719,34 @@ 0, 3, 0, - "'d200de4b408079e1eb1d15dfd22fda38360433f1d1b51f9f45cea3c5a591052445391f87ca7b96216f775057ff0cda065941b6e9227f32d9e328cbf0170e4674'" + "'1b438e77e5310d5fdc5ad77d7bdef1879268dd4b4367f3243f73300f990ba7afcfc5ed5ad583261cee8dd68a46a591d8cabaa32bc182a0ad12470f7619fa4f15'" ], - "asctime": "2020-01-29 07:23:28,801", - "created": 1580279008.801717, + "asctime": "2020-12-21 22:33:10,981", + "created": 1608586390.981671, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 334, - "message": "SJP: TX -> status: 0, service_id: 3, data_id: 0, data: \"'d200de4b408079e1eb1d15dfd22fda38360433f1d1b51f9f45cea3c5a591052445391f87ca7b96216f775057ff0cda065941b6e9227f32d9e328cbf0170e4674'\"", + "lineno": 352, + "message": "SJP: TX -> status: 0, service_id: 3, data_id: 0, data: \"'1b438e77e5310d5fdc5ad77d7bdef1879268dd4b4367f3243f73300f990ba7afcfc5ed5ad583261cee8dd68a46a591d8cabaa32bc182a0ad12470f7619fa4f15'\"", "module": "__init__", - "msecs": 801.7170429229736, + "msecs": 981.6710948944092, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 9877.766847610474, + "relativeCreated": 9893.978118896484, "stack_info": null, - "thread": 139631579064064, + "thread": 139622161319680, "threadName": "Thread-27" }, { "args": [], - "asctime": "2020-01-29 07:23:28,802", - "created": 1580279008.802853, + "asctime": "2020-12-21 22:33:10,982", + "created": 1608586390.9822643, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -16694,23 +16754,23 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 55, - "message": "Send data: (188): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 33 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 64 32 30 30 64 65 34 62 34 30 38 30 37 39 65 31 65 62 31 64 31 35 64 66 64 32 32 66 64 61 33 38 33 36 30 34 33 33 66 31 64 31 62 35 31 66 39 66 34 35 63 65 61 33 63 35 61 35 39 31 30 35 32 34 34 35 33 39 31 66 38 37 63 61 37 62 39 36 32 31 36 66 37 37 35 30 35 37 66 66 30 63 64 61 30 36 35 39 34 31 62 36 65 39 32 32 37 66 33 32 64 39 65 33 32 38 63 62 66 30 31 37 30 65 34 36 37 34 22 7d 5f 78 04 93", + "message": "Send data: (188): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 33 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 31 62 34 33 38 65 37 37 65 35 33 31 30 64 35 66 64 63 35 61 64 37 37 64 37 62 64 65 66 31 38 37 39 32 36 38 64 64 34 62 34 33 36 37 66 33 32 34 33 66 37 33 33 30 30 66 39 39 30 62 61 37 61 66 63 66 63 35 65 64 35 61 64 35 38 33 32 36 31 63 65 65 38 64 64 36 38 61 34 36 61 35 39 31 64 38 63 61 62 61 61 33 32 62 63 31 38 32 61 30 61 64 31 32 34 37 30 66 37 36 31 39 66 61 34 66 31 35 22 7d d4 d9 18 24", "module": "test_helpers", - "msecs": 802.8531074523926, - "msg": "Send data: (188): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 33 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 64 32 30 30 64 65 34 62 34 30 38 30 37 39 65 31 65 62 31 64 31 35 64 66 64 32 32 66 64 61 33 38 33 36 30 34 33 33 66 31 64 31 62 35 31 66 39 66 34 35 63 65 61 33 63 35 61 35 39 31 30 35 32 34 34 35 33 39 31 66 38 37 63 61 37 62 39 36 32 31 36 66 37 37 35 30 35 37 66 66 30 63 64 61 30 36 35 39 34 31 62 36 65 39 32 32 37 66 33 32 64 39 65 33 32 38 63 62 66 30 31 37 30 65 34 36 37 34 22 7d 5f 78 04 93", + "msecs": 982.2642803192139, + "msg": "Send data: (188): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 33 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 31 62 34 33 38 65 37 37 65 35 33 31 30 64 35 66 64 63 35 61 64 37 37 64 37 62 64 65 66 31 38 37 39 32 36 38 64 64 34 62 34 33 36 37 66 33 32 34 33 66 37 33 33 30 30 66 39 39 30 62 61 37 61 66 63 66 63 35 65 64 35 61 64 35 38 33 32 36 31 63 65 65 38 64 64 36 38 61 34 36 61 35 39 31 64 38 63 61 62 61 61 33 32 62 63 31 38 32 61 30 61 64 31 32 34 37 30 66 37 36 31 39 66 61 34 66 31 35 22 7d d4 d9 18 24", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 9878.902912139893, + "relativeCreated": 9894.571304321289, "stack_info": null, - "thread": 139631579064064, + "thread": 139622161319680, "threadName": "Thread-27" }, { "args": [], - "asctime": "2020-01-29 07:23:28,954", - "created": 1580279008.9540498, + "asctime": "2020-12-21 22:33:11,133", + "created": 1608586391.1333892, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -16718,17 +16778,17 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 66, - "message": "Receive data (188): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 33 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 64 32 30 30 64 65 34 62 34 30 38 30 37 39 65 31 65 62 31 64 31 35 64 66 64 32 32 66 64 61 33 38 33 36 30 34 33 33 66 31 64 31 62 35 31 66 39 66 34 35 63 65 61 33 63 35 61 35 39 31 30 35 32 34 34 35 33 39 31 66 38 37 63 61 37 62 39 36 32 31 36 66 37 37 35 30 35 37 66 66 30 63 64 61 30 36 35 39 34 31 62 36 65 39 32 32 37 66 33 32 64 39 65 33 32 38 63 62 66 30 31 37 30 65 34 36 37 34 22 7d 5f 78 04 93", + "message": "Receive data (188): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 33 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 31 62 34 33 38 65 37 37 65 35 33 31 30 64 35 66 64 63 35 61 64 37 37 64 37 62 64 65 66 31 38 37 39 32 36 38 64 64 34 62 34 33 36 37 66 33 32 34 33 66 37 33 33 30 30 66 39 39 30 62 61 37 61 66 63 66 63 35 65 64 35 61 64 35 38 33 32 36 31 63 65 65 38 64 64 36 38 61 34 36 61 35 39 31 64 38 63 61 62 61 61 33 32 62 63 31 38 32 61 30 61 64 31 32 34 37 30 66 37 36 31 39 66 61 34 66 31 35 22 7d d4 d9 18 24", "module": "test_helpers", - "msecs": 954.049825668335, - "msg": "Receive data (188): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 33 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 64 32 30 30 64 65 34 62 34 30 38 30 37 39 65 31 65 62 31 64 31 35 64 66 64 32 32 66 64 61 33 38 33 36 30 34 33 33 66 31 64 31 62 35 31 66 39 66 34 35 63 65 61 33 63 35 61 35 39 31 30 35 32 34 34 35 33 39 31 66 38 37 63 61 37 62 39 36 32 31 36 66 37 37 35 30 35 37 66 66 30 63 64 61 30 36 35 39 34 31 62 36 65 39 32 32 37 66 33 32 64 39 65 33 32 38 63 62 66 30 31 37 30 65 34 36 37 34 22 7d 5f 78 04 93", + "msecs": 133.38923454284668, + "msg": "Receive data (188): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 33 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 31 62 34 33 38 65 37 37 65 35 33 31 30 64 35 66 64 63 35 61 64 37 37 64 37 62 64 65 66 31 38 37 39 32 36 38 64 64 34 62 34 33 36 37 66 33 32 34 33 66 37 33 33 30 30 66 39 39 30 62 61 37 61 66 63 66 63 35 65 64 35 61 64 35 38 33 32 36 31 63 65 65 38 64 64 36 38 61 34 36 61 35 39 31 64 38 63 61 62 61 61 33 32 62 63 31 38 32 61 30 61 64 31 32 34 37 30 66 37 36 31 39 66 61 34 66 31 35 22 7d d4 d9 18 24", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 10030.099630355835, + "relativeCreated": 10045.696258544922, "stack_info": null, - "thread": 139631570671360, + "thread": 139622152926976, "threadName": "Thread-28" }, { @@ -16737,28 +16797,28 @@ "0", "3", "0", - "'d200de4b408079e1eb1d15dfd22fda38360433f1d1b51f9f45cea3c5a591052445391f87ca7b96216f775057ff0cda065941b6e9227f32d9e328cbf0170e4674'" + "'1b438e77e5310d5fdc5ad77d7bdef1879268dd4b4367f3243f73300f990ba7afcfc5ed5ad583261cee8dd68a46a591d8cabaa32bc182a0ad12470f7619fa4f15'" ], - "asctime": "2020-01-29 07:23:28,954", - "created": 1580279008.9543133, + "asctime": "2020-12-21 22:33:11,133", + "created": 1608586391.133811, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 247, - "message": "SJP: RX <- status: 0, service_id: 3, data_id: 0, data: \"'d200de4b408079e1eb1d15dfd22fda38360433f1d1b51f9f45cea3c5a591052445391f87ca7b96216f775057ff0cda065941b6e9227f32d9e328cbf0170e4674'\"", + "lineno": 259, + "message": "SJP: RX <- status: 0, service_id: 3, data_id: 0, data: \"'1b438e77e5310d5fdc5ad77d7bdef1879268dd4b4367f3243f73300f990ba7afcfc5ed5ad583261cee8dd68a46a591d8cabaa32bc182a0ad12470f7619fa4f15'\"", "module": "__init__", - "msecs": 954.3132781982422, + "msecs": 133.81099700927734, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 10030.363082885742, + "relativeCreated": 10046.118021011353, "stack_info": null, - "thread": 139631570671360, + "thread": 139622152926976, "threadName": "Thread-28" }, { @@ -16766,52 +16826,52 @@ "SJP:", "__authentificate_check_key__" ], - "asctime": "2020-01-29 07:23:28,954", - "created": 1580279008.9544284, + "asctime": "2020-12-21 22:33:11,134", + "created": 1608586391.1340733, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 264, + "lineno": 282, "message": "SJP: Executing callback __authentificate_check_key__ to process received data", "module": "__init__", - "msecs": 954.4284343719482, + "msecs": 134.07325744628906, "msg": "%s Executing callback %s to process received data", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 10030.478239059448, + "relativeCreated": 10046.380281448364, "stack_info": null, - "thread": 139631570671360, + "thread": 139622152926976, "threadName": "Thread-28" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:28,954", - "created": 1580279008.954536, + "asctime": "2020-12-21 22:33:11,134", + "created": 1608586391.1342802, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentificate_check_key__", "levelname": "INFO", "levelno": 20, - "lineno": 427, + "lineno": 445, "message": "SJP: Got incorrect key, sending negative authentification feedback", "module": "__init__", - "msecs": 954.535961151123, + "msecs": 134.28020477294922, "msg": "%s Got incorrect key, sending negative authentification feedback", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 10030.585765838623, + "relativeCreated": 10046.587228775024, "stack_info": null, - "thread": 139631570671360, + "thread": 139622152926976, "threadName": "Thread-28" }, { @@ -16822,32 +16882,32 @@ 0, "False" ], - "asctime": "2020-01-29 07:23:28,954", - "created": 1580279008.954633, + "asctime": "2020-12-21 22:33:11,134", + "created": 1608586391.1345766, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 334, + "lineno": 352, "message": "SJP: TX -> status: 0, service_id: 4, data_id: 0, data: \"False\"", "module": "__init__", - "msecs": 954.6329975128174, + "msecs": 134.57655906677246, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 10030.682802200317, + "relativeCreated": 10046.883583068848, "stack_info": null, - "thread": 139631570671360, + "thread": 139622152926976, "threadName": "Thread-28" }, { "args": [], - "asctime": "2020-01-29 07:23:28,954", - "created": 1580279008.954823, + "asctime": "2020-12-21 22:33:11,135", + "created": 1608586391.135165, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -16857,21 +16917,21 @@ "lineno": 55, "message": "Send data: (63): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 34 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 66 61 6c 73 65 7d 4e 90 38 f9", "module": "test_helpers", - "msecs": 954.8230171203613, + "msecs": 135.16497611999512, "msg": "Send data: (63): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 34 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 66 61 6c 73 65 7d 4e 90 38 f9", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 10030.872821807861, + "relativeCreated": 10047.47200012207, "stack_info": null, - "thread": 139631570671360, + "thread": 139622152926976, "threadName": "Thread-28" }, { "args": [], - "asctime": "2020-01-29 07:23:29,112", - "created": 1580279009.1127846, + "asctime": "2020-12-21 22:33:11,286", + "created": 1608586391.2861924, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -16881,15 +16941,15 @@ "lineno": 66, "message": "Receive data (63): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 34 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 66 61 6c 73 65 7d 4e 90 38 f9", "module": "test_helpers", - "msecs": 112.78462409973145, + "msecs": 286.1924171447754, "msg": "Receive data (63): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 34 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 66 61 6c 73 65 7d 4e 90 38 f9", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 10188.834428787231, + "relativeCreated": 10198.49944114685, "stack_info": null, - "thread": 139631579064064, + "thread": 139622161319680, "threadName": "Thread-29" }, { @@ -16900,26 +16960,26 @@ "0", "False" ], - "asctime": "2020-01-29 07:23:29,113", - "created": 1580279009.1130025, + "asctime": "2020-12-21 22:33:11,286", + "created": 1608586391.286689, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 247, + "lineno": 259, "message": "SJP: RX <- status: 0, service_id: 4, data_id: 0, data: \"False\"", "module": "__init__", - "msecs": 113.00253868103027, + "msecs": 286.68904304504395, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 10189.05234336853, + "relativeCreated": 10198.99606704712, "stack_info": null, - "thread": 139631579064064, + "thread": 139622161319680, "threadName": "Thread-29" }, { @@ -16927,52 +16987,52 @@ "SJP:", "__authentificate_process_feedback__" ], - "asctime": "2020-01-29 07:23:29,113", - "created": 1580279009.113099, + "asctime": "2020-12-21 22:33:11,286", + "created": 1608586391.2869031, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 281, + "lineno": 299, "message": "SJP: Executing callback __authentificate_process_feedback__ to process received data", "module": "__init__", - "msecs": 113.0990982055664, + "msecs": 286.90314292907715, "msg": "%s Executing callback %s to process received data", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 10189.148902893066, + "relativeCreated": 10199.210166931152, "stack_info": null, - "thread": 139631579064064, + "thread": 139622161319680, "threadName": "Thread-29" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:29,113", - "created": 1580279009.1131709, + "asctime": "2020-12-21 22:33:11,287", + "created": 1608586391.2870605, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentificate_process_feedback__", "levelname": "WARNING", "levelno": 30, - "lineno": 437, + "lineno": 455, "message": "SJP: Got negative authentification feedback", "module": "__init__", - "msecs": 113.17086219787598, + "msecs": 287.0604991912842, "msg": "%s Got negative authentification feedback", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 10189.220666885376, + "relativeCreated": 10199.36752319336, "stack_info": null, - "thread": 139631579064064, + "thread": 139622161319680, "threadName": "Thread-29" }, { @@ -16983,32 +17043,32 @@ 45054, "{'test': 'test'}" ], - "asctime": "2020-01-29 07:23:29,190", - "created": 1580279009.190254, + "asctime": "2020-12-21 22:33:11,379", + "created": 1608586391.3795815, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 334, + "lineno": 352, "message": "SJP: TX -> status: 0, service_id: 10, data_id: 45054, data: \"{'test': 'test'}\"", "module": "__init__", - "msecs": 190.25397300720215, + "msecs": 379.5814514160156, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 10266.303777694702, + "relativeCreated": 10291.88847541809, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-01-29 07:23:29,190", - "created": 1580279009.1906302, + "asctime": "2020-12-21 22:33:11,380", + "created": 1608586391.3801787, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -17018,21 +17078,21 @@ "lineno": 55, "message": "Send data: (79): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 7d 82 1c 8b 89", "module": "test_helpers", - "msecs": 190.6301975250244, + "msecs": 380.17868995666504, "msg": "Send data: (79): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 7d 82 1c 8b 89", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 10266.680002212524, + "relativeCreated": 10292.48571395874, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-01-29 07:23:29,351", - "created": 1580279009.351839, + "asctime": "2020-12-21 22:33:11,531", + "created": 1608586391.5312803, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -17042,15 +17102,15 @@ "lineno": 66, "message": "Receive data (79): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 7d 82 1c 8b 89", "module": "test_helpers", - "msecs": 351.8390655517578, + "msecs": 531.2802791595459, "msg": "Receive data (79): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 7d 82 1c 8b 89", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 10427.888870239258, + "relativeCreated": 10443.587303161621, "stack_info": null, - "thread": 139631579064064, + "thread": 139622161319680, "threadName": "Thread-30" }, { @@ -17061,26 +17121,26 @@ "45054", "{'test': 'test'}" ], - "asctime": "2020-01-29 07:23:29,352", - "created": 1580279009.3524005, + "asctime": "2020-12-21 22:33:11,531", + "created": 1608586391.531724, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 247, + "lineno": 259, "message": "SJP: RX <- status: 0, service_id: 10, data_id: 45054, data: \"{'test': 'test'}\"", "module": "__init__", - "msecs": 352.400541305542, + "msecs": 531.7239761352539, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 10428.450345993042, + "relativeCreated": 10444.03100013733, "stack_info": null, - "thread": 139631579064064, + "thread": 139622161319680, "threadName": "Thread-30" }, { @@ -17088,26 +17148,26 @@ "SJP:", "Unknown Client" ], - "asctime": "2020-01-29 07:23:29,352", - "created": 1580279009.3526576, + "asctime": "2020-12-21 22:33:11,531", + "created": 1608586391.5319405, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "WARNING", "levelno": 30, - "lineno": 257, + "lineno": 275, "message": "SJP: Received message needs authentification: Unknown Client. Sending negative response.", "module": "__init__", - "msecs": 352.6575565338135, + "msecs": 531.9404602050781, "msg": "%s Received message needs authentification: %s. Sending negative response.", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 10428.707361221313, + "relativeCreated": 10444.247484207153, "stack_info": null, - "thread": 139631579064064, + "thread": 139622161319680, "threadName": "Thread-30" }, { @@ -17118,32 +17178,32 @@ 45054, "None" ], - "asctime": "2020-01-29 07:23:29,352", - "created": 1580279009.3528183, + "asctime": "2020-12-21 22:33:11,532", + "created": 1608586391.532117, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 334, + "lineno": 352, "message": "SJP: TX -> status: 2, service_id: 11, data_id: 45054, data: \"None\"", "module": "__init__", - "msecs": 352.81825065612793, + "msecs": 532.1168899536133, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 10428.868055343628, + "relativeCreated": 10444.423913955688, "stack_info": null, - "thread": 139631579064064, + "thread": 139622161319680, "threadName": "Thread-30" }, { "args": [], - "asctime": "2020-01-29 07:23:29,353", - "created": 1580279009.3532853, + "asctime": "2020-12-21 22:33:11,532", + "created": 1608586391.5324883, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -17153,21 +17213,21 @@ "lineno": 55, "message": "Send data: (67): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 32 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 0d 4e 8b 87", "module": "test_helpers", - "msecs": 353.2853126525879, + "msecs": 532.4883460998535, "msg": "Send data: (67): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 32 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 0d 4e 8b 87", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 10429.335117340088, + "relativeCreated": 10444.795370101929, "stack_info": null, - "thread": 139631579064064, + "thread": 139622161319680, "threadName": "Thread-30" }, { "args": [], - "asctime": "2020-01-29 07:23:29,511", - "created": 1580279009.511888, + "asctime": "2020-12-21 22:33:11,683", + "created": 1608586391.683534, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -17177,15 +17237,15 @@ "lineno": 66, "message": "Receive data (67): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 32 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 0d 4e 8b 87", "module": "test_helpers", - "msecs": 511.8880271911621, + "msecs": 683.5339069366455, "msg": "Receive data (67): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 32 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 0d 4e 8b 87", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 10587.937831878662, + "relativeCreated": 10595.84093093872, "stack_info": null, - "thread": 139631570671360, + "thread": 139622152926976, "threadName": "Thread-31" }, { @@ -17196,26 +17256,26 @@ "45054", "None" ], - "asctime": "2020-01-29 07:23:29,512", - "created": 1580279009.5120363, + "asctime": "2020-12-21 22:33:11,683", + "created": 1608586391.6839418, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 247, + "lineno": 259, "message": "SJP: RX <- status: 2, service_id: 11, data_id: 45054, data: \"None\"", "module": "__init__", - "msecs": 512.0363235473633, + "msecs": 683.9418411254883, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 10588.086128234863, + "relativeCreated": 10596.248865127563, "stack_info": null, - "thread": 139631570671360, + "thread": 139622152926976, "threadName": "Thread-31" }, { @@ -17223,74 +17283,74 @@ "SJP:", "Authentification required" ], - "asctime": "2020-01-29 07:23:29,512", - "created": 1580279009.5121038, + "asctime": "2020-12-21 22:33:11,684", + "created": 1608586391.684196, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "WARNING", "levelno": 30, - "lineno": 274, + "lineno": 292, "message": "SJP: Received message has a peculiar status: Authentification required", "module": "__init__", - "msecs": 512.103796005249, + "msecs": 684.1959953308105, "msg": "%s Received message has a peculiar status: %s", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 10588.153600692749, + "relativeCreated": 10596.503019332886, "stack_info": null, - "thread": 139631570671360, + "thread": 139622152926976, "threadName": "Thread-31" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:29,512", - "created": 1580279009.5121546, + "asctime": "2020-12-21 22:33:11,684", + "created": 1608586391.684379, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 292, + "lineno": 310, "message": "SJP: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 512.1545791625977, + "msecs": 684.3791007995605, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 10588.204383850098, + "relativeCreated": 10596.686124801636, "stack_info": null, - "thread": 139631570671360, + "thread": 139622152926976, "threadName": "Thread-31" } ], - "msecs": 702.2030353546143, + "msecs": 882.3320865631104, "msg": "Authentification with different secrets for request and response instance (pure_json_protocol).", "name": "__tLogger__", "pathname": "src/tests/test_handling_errors.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 10778.252840042114, + "relativeCreated": 10794.639110565186, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread", - "time_consumption": 0.1900484561920166 + "time_consumption": 0.1979529857635498 }, { "args": [ "False", "" ], - "asctime": "2020-01-29 07:23:29,702", - "created": 1580279009.7026272, + "asctime": "2020-12-21 22:33:11,883", + "created": 1608586391.883149, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -17307,8 +17367,8 @@ "False", "" ], - "asctime": "2020-01-29 07:23:29,702", - "created": 1580279009.7024615, + "asctime": "2020-12-21 22:33:11,882", + "created": 1608586391.8828146, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -17318,15 +17378,15 @@ "lineno": 22, "message": "Result (Return value of authentification): False ()", "module": "test", - "msecs": 702.4614810943604, + "msecs": 882.8146457672119, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 10778.51128578186, + "relativeCreated": 10795.121669769287, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -17335,8 +17395,8 @@ "False", "" ], - "asctime": "2020-01-29 07:23:29,702", - "created": 1580279009.7025485, + "asctime": "2020-12-21 22:33:11,882", + "created": 1608586391.8829923, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -17346,37 +17406,37 @@ "lineno": 26, "message": "Expectation (Return value of authentification): result = False ()", "module": "test", - "msecs": 702.5485038757324, + "msecs": 882.9922676086426, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 10778.598308563232, + "relativeCreated": 10795.299291610718, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" } ], - "msecs": 702.6271820068359, + "msecs": 883.1489086151123, "msg": "Return value of authentification is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 10778.676986694336, + "relativeCreated": 10795.455932617188, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread", - "time_consumption": 7.867813110351562e-05 + "time_consumption": 0.00015664100646972656 }, { "args": [ "True", "" ], - "asctime": "2020-01-29 07:23:29,702", - "created": 1580279009.7028635, + "asctime": "2020-12-21 22:33:11,883", + "created": 1608586391.8836803, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -17393,8 +17453,8 @@ "True", "" ], - "asctime": "2020-01-29 07:23:29,702", - "created": 1580279009.7027278, + "asctime": "2020-12-21 22:33:11,883", + "created": 1608586391.8833723, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -17404,15 +17464,15 @@ "lineno": 22, "message": "Result (Return value of send method): True ()", "module": "test", - "msecs": 702.7277946472168, + "msecs": 883.3723068237305, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 10778.777599334717, + "relativeCreated": 10795.679330825806, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -17421,8 +17481,8 @@ "True", "" ], - "asctime": "2020-01-29 07:23:29,702", - "created": 1580279009.7027965, + "asctime": "2020-12-21 22:33:11,883", + "created": 1608586391.883515, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -17432,37 +17492,37 @@ "lineno": 26, "message": "Expectation (Return value of send method): result = True ()", "module": "test", - "msecs": 702.796459197998, + "msecs": 883.5148811340332, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 10778.846263885498, + "relativeCreated": 10795.821905136108, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" } ], - "msecs": 702.8634548187256, + "msecs": 883.6803436279297, "msg": "Return value of send method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 10778.913259506226, + "relativeCreated": 10795.987367630005, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread", - "time_consumption": 6.699562072753906e-05 + "time_consumption": 0.00016546249389648438 }, { "args": [ "2", "" ], - "asctime": "2020-01-29 07:23:29,703", - "created": 1580279009.7030938, + "asctime": "2020-12-21 22:33:11,884", + "created": 1608586391.8841856, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -17479,8 +17539,8 @@ "2", "" ], - "asctime": "2020-01-29 07:23:29,702", - "created": 1580279009.702958, + "asctime": "2020-12-21 22:33:11,883", + "created": 1608586391.8839102, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -17490,15 +17550,15 @@ "lineno": 22, "message": "Result (Response Status (Authentification required) transfered via pure_json_protocol): 2 ()", "module": "test", - "msecs": 702.9581069946289, + "msecs": 883.9101791381836, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 10779.007911682129, + "relativeCreated": 10796.217203140259, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -17507,8 +17567,8 @@ "2", "" ], - "asctime": "2020-01-29 07:23:29,703", - "created": 1580279009.7030246, + "asctime": "2020-12-21 22:33:11,884", + "created": 1608586391.8840501, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -17518,37 +17578,37 @@ "lineno": 26, "message": "Expectation (Response Status (Authentification required) transfered via pure_json_protocol): result = 2 ()", "module": "test", - "msecs": 703.0246257781982, + "msecs": 884.0501308441162, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 10779.074430465698, + "relativeCreated": 10796.357154846191, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" } ], - "msecs": 703.0937671661377, + "msecs": 884.1855525970459, "msg": "Response Status (Authentification required) transfered via pure_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 10779.143571853638, + "relativeCreated": 10796.492576599121, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread", - "time_consumption": 6.914138793945312e-05 + "time_consumption": 0.0001354217529296875 }, { "args": [ "None", "" ], - "asctime": "2020-01-29 07:23:29,703", - "created": 1580279009.703329, + "asctime": "2020-12-21 22:33:11,884", + "created": 1608586391.8846774, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -17565,8 +17625,8 @@ "None", "" ], - "asctime": "2020-01-29 07:23:29,703", - "created": 1580279009.7031903, + "asctime": "2020-12-21 22:33:11,884", + "created": 1608586391.8844066, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -17576,15 +17636,15 @@ "lineno": 22, "message": "Result (Response Data (no data) transfered via pure_json_protocol): None ()", "module": "test", - "msecs": 703.1903266906738, + "msecs": 884.406566619873, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 10779.240131378174, + "relativeCreated": 10796.713590621948, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -17593,8 +17653,8 @@ "None", "" ], - "asctime": "2020-01-29 07:23:29,703", - "created": 1580279009.7032616, + "asctime": "2020-12-21 22:33:11,884", + "created": 1608586391.8845446, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -17604,37 +17664,37 @@ "lineno": 26, "message": "Expectation (Response Data (no data) transfered via pure_json_protocol): result = None ()", "module": "test", - "msecs": 703.2616138458252, + "msecs": 884.5446109771729, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 10779.311418533325, + "relativeCreated": 10796.851634979248, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" } ], - "msecs": 703.3290863037109, + "msecs": 884.6774101257324, "msg": "Response Data (no data) transfered via pure_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 10779.378890991211, + "relativeCreated": 10796.984434127808, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread", - "time_consumption": 6.747245788574219e-05 + "time_consumption": 0.0001327991485595703 }, { "args": [ "None", "" ], - "asctime": "2020-01-29 07:23:29,803", - "created": 1580279009.8039877, + "asctime": "2020-12-21 22:33:11,985", + "created": 1608586391.9859545, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -17652,26 +17712,26 @@ "11", "45054" ], - "asctime": "2020-01-29 07:23:29,803", - "created": 1580279009.8036408, + "asctime": "2020-12-21 22:33:11,985", + "created": 1608586391.985235, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 309, + "lineno": 327, "message": "SJP: TIMEOUT (0.1s): Requested data (service_id: 11; data_id: 45054) not in buffer.", "module": "__init__", - "msecs": 803.6408424377441, + "msecs": 985.2349758148193, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 10879.690647125244, + "relativeCreated": 10897.541999816895, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -17680,8 +17740,8 @@ "None", "" ], - "asctime": "2020-01-29 07:23:29,803", - "created": 1580279009.8038142, + "asctime": "2020-12-21 22:33:11,985", + "created": 1608586391.9855933, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -17691,15 +17751,15 @@ "lineno": 22, "message": "Result (Return Value (request instance) for pure_json_protocol.receive with data data_id 0xaffe): None ()", "module": "test", - "msecs": 803.814172744751, + "msecs": 985.593318939209, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 10879.863977432251, + "relativeCreated": 10897.900342941284, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -17708,8 +17768,8 @@ "None", "" ], - "asctime": "2020-01-29 07:23:29,803", - "created": 1580279009.8039052, + "asctime": "2020-12-21 22:33:11,985", + "created": 1608586391.9857929, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -17719,37 +17779,37 @@ "lineno": 26, "message": "Expectation (Return Value (request instance) for pure_json_protocol.receive with data data_id 0xaffe): result = None ()", "module": "test", - "msecs": 803.9052486419678, + "msecs": 985.792875289917, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 10879.955053329468, + "relativeCreated": 10898.099899291992, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" } ], - "msecs": 803.9877414703369, + "msecs": 985.9545230865479, "msg": "Return Value (request instance) for pure_json_protocol.receive with data data_id 0xaffe is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 10880.037546157837, + "relativeCreated": 10898.261547088623, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread", - "time_consumption": 8.249282836914062e-05 + "time_consumption": 0.00016164779663085938 }, { "args": [ "None", "" ], - "asctime": "2020-01-29 07:23:29,907", - "created": 1580279009.9076662, + "asctime": "2020-12-21 22:33:12,087", + "created": 1608586392.0872252, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -17767,26 +17827,26 @@ "10", "45054" ], - "asctime": "2020-01-29 07:23:29,904", - "created": 1580279009.9049795, + "asctime": "2020-12-21 22:33:12,086", + "created": 1608586392.0865903, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 309, + "lineno": 327, "message": "SJP: TIMEOUT (0.1s): Requested data (service_id: 10; data_id: 45054) not in buffer.", "module": "__init__", - "msecs": 904.9794673919678, + "msecs": 86.59029006958008, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 10981.029272079468, + "relativeCreated": 10998.897314071655, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -17795,8 +17855,8 @@ "None", "" ], - "asctime": "2020-01-29 07:23:29,906", - "created": 1580279009.9063115, + "asctime": "2020-12-21 22:33:12,086", + "created": 1608586392.086902, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -17806,15 +17866,15 @@ "lineno": 22, "message": "Result (Return Value (response instance) for pure_json_protocol.receive with data data_id 0xaffe): None ()", "module": "test", - "msecs": 906.3115119934082, + "msecs": 86.90190315246582, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 10982.361316680908, + "relativeCreated": 10999.208927154541, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -17823,8 +17883,8 @@ "None", "" ], - "asctime": "2020-01-29 07:23:29,907", - "created": 1580279009.9070861, + "asctime": "2020-12-21 22:33:12,087", + "created": 1608586392.0870724, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -17834,41 +17894,41 @@ "lineno": 26, "message": "Expectation (Return Value (response instance) for pure_json_protocol.receive with data data_id 0xaffe): result = None ()", "module": "test", - "msecs": 907.0861339569092, + "msecs": 87.07237243652344, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 10983.13593864441, + "relativeCreated": 10999.379396438599, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" } ], - "msecs": 907.6662063598633, + "msecs": 87.22519874572754, "msg": "Return Value (response instance) for pure_json_protocol.receive with data data_id 0xaffe is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 10983.716011047363, + "relativeCreated": 10999.532222747803, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread", - "time_consumption": 0.0005800724029541016 + "time_consumption": 0.00015282630920410156 } ], - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread", - "time_consumption": 1.4237730503082275, - "time_finished": "2020-01-29 07:23:29,907", - "time_start": "2020-01-29 07:23:28,483" + "time_consumption": 1.4117863178253174, + "time_finished": "2020-12-21 22:33:12,087", + "time_start": "2020-12-21 22:33:10,675" }, "socket_protocol.pure_json_protocol: Checksum corumpation while sending.": { "args": null, - "asctime": "2020-01-29 07:23:25,848", - "created": 1580279005.8480244, + "asctime": "2020-12-21 22:33:08,047", + "created": 1608586388.0475433, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -17879,19 +17939,19 @@ "message": "socket_protocol.pure_json_protocol: Checksum corumpation while sending.", "module": "__init__", "moduleLogger": [], - "msecs": 848.0243682861328, + "msecs": 47.54328727722168, "msg": "socket_protocol.pure_json_protocol: Checksum corumpation while sending.", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 6924.074172973633, + "relativeCreated": 6959.850311279297, "stack_info": null, "testcaseLogger": [ { "args": [], - "asctime": "2020-01-29 07:23:26,157", - "created": 1580279006.1578, + "asctime": "2020-12-21 22:33:08,353", + "created": 1608586388.353679, "exc_info": null, "exc_text": null, "filename": "test_communication_errors.py", @@ -17906,104 +17966,104 @@ "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:25,848", - "created": 1580279005.8481534, + "asctime": "2020-12-21 22:33:08,047", + "created": 1608586388.047835, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 295, + "lineno": 313, "message": "SJP: Cleaning up receive-buffer", "module": "__init__", - "msecs": 848.1533527374268, + "msecs": 47.83511161804199, "msg": "%s Cleaning up receive-buffer", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 6924.203157424927, + "relativeCreated": 6960.142135620117, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:25,848", - "created": 1580279005.8483164, + "asctime": "2020-12-21 22:33:08,048", + "created": 1608586388.048151, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 199, + "lineno": 217, "message": "SJP: Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "module": "__init__", - "msecs": 848.3164310455322, + "msecs": 48.15101623535156, "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 6924.366235733032, + "relativeCreated": 6960.458040237427, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:25,848", - "created": 1580279005.848414, + "asctime": "2020-12-21 22:33:08,048", + "created": 1608586388.0483403, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 295, + "lineno": 313, "message": "SJP: Cleaning up receive-buffer", "module": "__init__", - "msecs": 848.4139442443848, + "msecs": 48.3403205871582, "msg": "%s Cleaning up receive-buffer", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 6924.463748931885, + "relativeCreated": 6960.647344589233, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:25,848", - "created": 1580279005.8485503, + "asctime": "2020-12-21 22:33:08,051", + "created": 1608586388.0516574, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 199, + "lineno": 217, "message": "SJP: Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "module": "__init__", - "msecs": 848.5503196716309, + "msecs": 51.65743827819824, "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 6924.600124359131, + "relativeCreated": 6963.964462280273, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -18014,32 +18074,32 @@ 45054, "{'test': 'test'}" ], - "asctime": "2020-01-29 07:23:25,848", - "created": 1580279005.848665, + "asctime": "2020-12-21 22:33:08,052", + "created": 1608586388.0520065, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 334, + "lineno": 352, "message": "SJP: TX -> status: 0, service_id: 10, data_id: 45054, data: \"{'test': 'test'}\"", "module": "__init__", - "msecs": 848.6649990081787, + "msecs": 52.00648307800293, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 6924.714803695679, + "relativeCreated": 6964.313507080078, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-01-29 07:23:25,848", - "created": 1580279005.8488884, + "asctime": "2020-12-21 22:33:08,052", + "created": 1608586388.0524678, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -18049,21 +18109,21 @@ "lineno": 55, "message": "Send data: (79): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 7d 82 1c 8b 89", "module": "test_helpers", - "msecs": 848.8883972167969, + "msecs": 52.46782302856445, "msg": "Send data: (79): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 7d 82 1c 8b 89", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 6924.938201904297, + "relativeCreated": 6964.77484703064, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-01-29 07:23:26,007", - "created": 1580279006.007672, + "asctime": "2020-12-21 22:33:08,203", + "created": 1608586388.2035697, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -18073,15 +18133,15 @@ "lineno": 66, "message": "Receive data (79): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 7d 82 1c 8b 8a", "module": "test_helpers", - "msecs": 7.67207145690918, + "msecs": 203.5696506500244, "msg": "Receive data (79): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 7d 82 1c 8b 8a", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 7083.721876144409, + "relativeCreated": 7115.8766746521, "stack_info": null, - "thread": 139631579064064, + "thread": 139622161319680, "threadName": "Thread-23" }, { @@ -18089,48 +18149,48 @@ "SJP:", "(79): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 7d 82 1c 8b 8a" ], - "asctime": "2020-01-29 07:23:26,007", - "created": 1580279006.0079021, + "asctime": "2020-12-21 22:33:08,203", + "created": 1608586388.2039897, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "WARNING", "levelno": 30, - "lineno": 238, + "lineno": 256, "message": "SJP: Received message has a wrong checksum and will be ignored: (79): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 7d 82 1c 8b 8a.", "module": "__init__", - "msecs": 7.9021453857421875, + "msecs": 203.98974418640137, "msg": "%s Received message has a wrong checksum and will be ignored: %s.", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 7083.951950073242, + "relativeCreated": 7116.296768188477, "stack_info": null, - "thread": 139631579064064, + "thread": 139622161319680, "threadName": "Thread-23" } ], - "msecs": 157.79995918273926, + "msecs": 353.67894172668457, "msg": "Send data with wrong checksum by pure_json_protocol.", "name": "__tLogger__", "pathname": "src/tests/test_communication_errors.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 7233.849763870239, + "relativeCreated": 7265.98596572876, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread", - "time_consumption": 0.14989781379699707 + "time_consumption": 0.1496891975402832 }, { "args": [ "True", "" ], - "asctime": "2020-01-29 07:23:26,158", - "created": 1580279006.1581445, + "asctime": "2020-12-21 22:33:08,354", + "created": 1608586388.3544984, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -18147,8 +18207,8 @@ "True", "" ], - "asctime": "2020-01-29 07:23:26,157", - "created": 1580279006.1579957, + "asctime": "2020-12-21 22:33:08,354", + "created": 1608586388.3541205, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -18158,15 +18218,15 @@ "lineno": 22, "message": "Result (Return value of send method): True ()", "module": "test", - "msecs": 157.99570083618164, + "msecs": 354.12049293518066, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 7234.045505523682, + "relativeCreated": 7266.427516937256, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -18175,8 +18235,8 @@ "True", "" ], - "asctime": "2020-01-29 07:23:26,158", - "created": 1580279006.1580734, + "asctime": "2020-12-21 22:33:08,354", + "created": 1608586388.354341, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -18186,37 +18246,37 @@ "lineno": 26, "message": "Expectation (Return value of send method): result = True ()", "module": "test", - "msecs": 158.07342529296875, + "msecs": 354.3410301208496, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 7234.123229980469, + "relativeCreated": 7266.648054122925, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" } ], - "msecs": 158.14447402954102, + "msecs": 354.49838638305664, "msg": "Return value of send method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 7234.194278717041, + "relativeCreated": 7266.805410385132, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread", - "time_consumption": 7.104873657226562e-05 + "time_consumption": 0.00015735626220703125 }, { "args": [ "False", "" ], - "asctime": "2020-01-29 07:23:26,158", - "created": 1580279006.158358, + "asctime": "2020-12-21 22:33:08,355", + "created": 1608586388.3550136, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -18233,8 +18293,8 @@ "False", "" ], - "asctime": "2020-01-29 07:23:26,158", - "created": 1580279006.1582341, + "asctime": "2020-12-21 22:33:08,354", + "created": 1608586388.354729, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -18244,15 +18304,15 @@ "lineno": 22, "message": "Result (Callback executed variable): False ()", "module": "test", - "msecs": 158.2341194152832, + "msecs": 354.72893714904785, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 7234.283924102783, + "relativeCreated": 7267.035961151123, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -18261,8 +18321,8 @@ "False", "" ], - "asctime": "2020-01-29 07:23:26,158", - "created": 1580279006.1582987, + "asctime": "2020-12-21 22:33:08,354", + "created": 1608586388.354875, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -18272,37 +18332,37 @@ "lineno": 26, "message": "Expectation (Callback executed variable): result = False ()", "module": "test", - "msecs": 158.29873085021973, + "msecs": 354.8750877380371, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 7234.34853553772, + "relativeCreated": 7267.182111740112, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" } ], - "msecs": 158.35809707641602, + "msecs": 355.0136089324951, "msg": "Callback executed variable is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 7234.407901763916, + "relativeCreated": 7267.32063293457, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread", - "time_consumption": 5.936622619628906e-05 + "time_consumption": 0.0001385211944580078 }, { "args": [ "None", "" ], - "asctime": "2020-01-29 07:23:26,259", - "created": 1580279006.2590103, + "asctime": "2020-12-21 22:33:08,456", + "created": 1608586388.4565601, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -18320,26 +18380,26 @@ "11", "45054" ], - "asctime": "2020-01-29 07:23:26,258", - "created": 1580279006.2586524, + "asctime": "2020-12-21 22:33:08,455", + "created": 1608586388.4556112, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 309, + "lineno": 327, "message": "SJP: TIMEOUT (0.1s): Requested data (service_id: 11; data_id: 45054) not in buffer.", "module": "__init__", - "msecs": 258.6524486541748, + "msecs": 455.6112289428711, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 7334.702253341675, + "relativeCreated": 7367.918252944946, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -18348,8 +18408,8 @@ "None", "" ], - "asctime": "2020-01-29 07:23:26,258", - "created": 1580279006.2588322, + "asctime": "2020-12-21 22:33:08,456", + "created": 1608586388.456077, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -18359,15 +18419,15 @@ "lineno": 22, "message": "Result (Return Value (request instance) for pure_json_protocol.receive with data data_id 0xaffe): None ()", "module": "test", - "msecs": 258.8322162628174, + "msecs": 456.07709884643555, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 7334.882020950317, + "relativeCreated": 7368.384122848511, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -18376,8 +18436,8 @@ "None", "" ], - "asctime": "2020-01-29 07:23:26,258", - "created": 1580279006.2589307, + "asctime": "2020-12-21 22:33:08,456", + "created": 1608586388.4563124, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -18387,37 +18447,37 @@ "lineno": 26, "message": "Expectation (Return Value (request instance) for pure_json_protocol.receive with data data_id 0xaffe): result = None ()", "module": "test", - "msecs": 258.9306831359863, + "msecs": 456.3124179840088, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 7334.980487823486, + "relativeCreated": 7368.619441986084, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" } ], - "msecs": 259.01031494140625, + "msecs": 456.5601348876953, "msg": "Return Value (request instance) for pure_json_protocol.receive with data data_id 0xaffe is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 7335.060119628906, + "relativeCreated": 7368.8671588897705, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread", - "time_consumption": 7.963180541992188e-05 + "time_consumption": 0.00024771690368652344 }, { "args": [ "None", "" ], - "asctime": "2020-01-29 07:23:26,359", - "created": 1580279006.3596802, + "asctime": "2020-12-21 22:33:08,557", + "created": 1608586388.5578475, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -18435,26 +18495,26 @@ "10", "45054" ], - "asctime": "2020-01-29 07:23:26,359", - "created": 1580279006.3593504, + "asctime": "2020-12-21 22:33:08,557", + "created": 1608586388.5571654, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 309, + "lineno": 327, "message": "SJP: TIMEOUT (0.1s): Requested data (service_id: 10; data_id: 45054) not in buffer.", "module": "__init__", - "msecs": 359.35044288635254, + "msecs": 557.1653842926025, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 7435.4002475738525, + "relativeCreated": 7469.472408294678, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -18463,8 +18523,8 @@ "None", "" ], - "asctime": "2020-01-29 07:23:26,359", - "created": 1580279006.3595269, + "asctime": "2020-12-21 22:33:08,557", + "created": 1608586388.5574813, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -18474,15 +18534,15 @@ "lineno": 22, "message": "Result (Return Value (response instance) for pure_json_protocol.receive with data data_id 0xaffe): None ()", "module": "test", - "msecs": 359.5268726348877, + "msecs": 557.4812889099121, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 7435.576677322388, + "relativeCreated": 7469.788312911987, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -18491,8 +18551,8 @@ "None", "" ], - "asctime": "2020-01-29 07:23:26,359", - "created": 1580279006.3596096, + "asctime": "2020-12-21 22:33:08,557", + "created": 1608586388.5576532, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -18502,41 +18562,41 @@ "lineno": 26, "message": "Expectation (Return Value (response instance) for pure_json_protocol.receive with data data_id 0xaffe): result = None ()", "module": "test", - "msecs": 359.60960388183594, + "msecs": 557.6531887054443, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 7435.659408569336, + "relativeCreated": 7469.9602127075195, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" } ], - "msecs": 359.68017578125, + "msecs": 557.8474998474121, "msg": "Return Value (response instance) for pure_json_protocol.receive with data data_id 0xaffe is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 7435.72998046875, + "relativeCreated": 7470.154523849487, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread", - "time_consumption": 7.05718994140625e-05 + "time_consumption": 0.00019431114196777344 } ], - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread", - "time_consumption": 0.5116558074951172, - "time_finished": "2020-01-29 07:23:26,359", - "time_start": "2020-01-29 07:23:25,848" + "time_consumption": 0.5103042125701904, + "time_finished": "2020-12-21 22:33:08,557", + "time_start": "2020-12-21 22:33:08,047" }, "socket_protocol.pure_json_protocol: Incompatible Callback return value(s).": { "args": null, - "asctime": "2020-01-29 07:23:29,911", - "created": 1580279009.911075, + "asctime": "2020-12-21 22:33:12,091", + "created": 1608586392.0917678, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -18547,19 +18607,19 @@ "message": "socket_protocol.pure_json_protocol: Incompatible Callback return value(s).", "module": "__init__", "moduleLogger": [], - "msecs": 911.0751152038574, + "msecs": 91.76778793334961, "msg": "socket_protocol.pure_json_protocol: Incompatible Callback return value(s).", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 10987.124919891357, + "relativeCreated": 11004.074811935425, "stack_info": null, "testcaseLogger": [ { "args": [], - "asctime": "2020-01-29 07:23:29,921", - "created": 1580279009.9215088, + "asctime": "2020-12-21 22:33:12,096", + "created": 1608586392.0969408, "exc_info": null, "exc_text": null, "filename": "test_handling_errors.py", @@ -18574,104 +18634,104 @@ "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:29,911", - "created": 1580279009.9112332, + "asctime": "2020-12-21 22:33:12,092", + "created": 1608586392.0920215, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 295, + "lineno": 313, "message": "SJP: Cleaning up receive-buffer", "module": "__init__", - "msecs": 911.2331867218018, + "msecs": 92.02146530151367, "msg": "%s Cleaning up receive-buffer", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 10987.282991409302, + "relativeCreated": 11004.328489303589, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:29,911", - "created": 1580279009.9114244, + "asctime": "2020-12-21 22:33:12,092", + "created": 1608586392.092329, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 199, + "lineno": 217, "message": "SJP: Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "module": "__init__", - "msecs": 911.4243984222412, + "msecs": 92.32902526855469, "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 10987.474203109741, + "relativeCreated": 11004.63604927063, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:29,911", - "created": 1580279009.9115512, + "asctime": "2020-12-21 22:33:12,092", + "created": 1608586392.0924988, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 295, + "lineno": 313, "message": "SJP: Cleaning up receive-buffer", "module": "__init__", - "msecs": 911.5512371063232, + "msecs": 92.498779296875, "msg": "%s Cleaning up receive-buffer", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 10987.601041793823, + "relativeCreated": 11004.80580329895, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:29,911", - "created": 1580279009.9117167, + "asctime": "2020-12-21 22:33:12,092", + "created": 1608586392.0927818, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 199, + "lineno": 217, "message": "SJP: Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "module": "__init__", - "msecs": 911.7166996002197, + "msecs": 92.78178215026855, "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 10987.76650428772, + "relativeCreated": 11005.088806152344, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -18682,32 +18742,32 @@ 45054, "None" ], - "asctime": "2020-01-29 07:23:29,911", - "created": 1580279009.9118664, + "asctime": "2020-12-21 22:33:12,093", + "created": 1608586392.0930116, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 334, + "lineno": 352, "message": "SJP: TX -> status: 0, service_id: 10, data_id: 45054, data: \"None\"", "module": "__init__", - "msecs": 911.8664264678955, + "msecs": 93.01161766052246, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 10987.916231155396, + "relativeCreated": 11005.318641662598, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-01-29 07:23:29,912", - "created": 1580279009.9121287, + "asctime": "2020-12-21 22:33:12,093", + "created": 1608586392.0933876, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -18717,21 +18777,21 @@ "lineno": 55, "message": "Send data: (67): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d e9 e9 77 c0", "module": "test_helpers", - "msecs": 912.1286869049072, + "msecs": 93.38760375976562, "msg": "Send data: (67): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d e9 e9 77 c0", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 10988.178491592407, + "relativeCreated": 11005.69462776184, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-01-29 07:23:29,912", - "created": 1580279009.912295, + "asctime": "2020-12-21 22:33:12,093", + "created": 1608586392.0936453, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -18741,15 +18801,15 @@ "lineno": 66, "message": "Receive data (67): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d e9 e9 77 c0", "module": "test_helpers", - "msecs": 912.2951030731201, + "msecs": 93.64533424377441, "msg": "Receive data (67): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d e9 e9 77 c0", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 10988.34490776062, + "relativeCreated": 11005.95235824585, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -18760,26 +18820,26 @@ "45054", "None" ], - "asctime": "2020-01-29 07:23:29,912", - "created": 1580279009.9124668, + "asctime": "2020-12-21 22:33:12,093", + "created": 1608586392.093928, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 247, + "lineno": 259, "message": "SJP: RX <- status: 0, service_id: 10, data_id: 45054, data: \"None\"", "module": "__init__", - "msecs": 912.4667644500732, + "msecs": 93.92809867858887, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 10988.516569137573, + "relativeCreated": 11006.235122680664, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -18787,26 +18847,26 @@ "SJP:", "response_data_method_fail" ], - "asctime": "2020-01-29 07:23:29,912", - "created": 1580279009.9125803, + "asctime": "2020-12-21 22:33:12,094", + "created": 1608586392.0940957, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 264, + "lineno": 282, "message": "SJP: Executing callback response_data_method_fail to process received data", "module": "__init__", - "msecs": 912.5802516937256, + "msecs": 94.09570693969727, "msg": "%s Executing callback %s to process received data", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 10988.630056381226, + "relativeCreated": 11006.402730941772, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -18817,32 +18877,32 @@ 48879, "None" ], - "asctime": "2020-01-29 07:23:29,912", - "created": 1580279009.9127383, + "asctime": "2020-12-21 22:33:12,094", + "created": 1608586392.0943017, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 334, + "lineno": 352, "message": "SJP: TX -> status: 0, service_id: 10, data_id: 48879, data: \"None\"", "module": "__init__", - "msecs": 912.7383232116699, + "msecs": 94.30170059204102, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 10988.78812789917, + "relativeCreated": 11006.608724594116, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-01-29 07:23:29,912", - "created": 1580279009.9129684, + "asctime": "2020-12-21 22:33:12,094", + "created": 1608586392.0946386, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -18852,21 +18912,21 @@ "lineno": 55, "message": "Send data: (67): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d da 63 1a 84", "module": "test_helpers", - "msecs": 912.9683971405029, + "msecs": 94.63858604431152, "msg": "Send data: (67): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d da 63 1a 84", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 10989.018201828003, + "relativeCreated": 11006.945610046387, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-01-29 07:23:29,913", - "created": 1580279009.9131205, + "asctime": "2020-12-21 22:33:12,094", + "created": 1608586392.0948892, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -18876,15 +18936,15 @@ "lineno": 66, "message": "Receive data (67): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d da 63 1a 84", "module": "test_helpers", - "msecs": 913.1205081939697, + "msecs": 94.88916397094727, "msg": "Receive data (67): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d da 63 1a 84", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 10989.17031288147, + "relativeCreated": 11007.196187973022, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -18895,52 +18955,52 @@ "48879", "None" ], - "asctime": "2020-01-29 07:23:29,913", - "created": 1580279009.913298, + "asctime": "2020-12-21 22:33:12,095", + "created": 1608586392.0951116, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 247, + "lineno": 259, "message": "SJP: RX <- status: 0, service_id: 10, data_id: 48879, data: \"None\"", "module": "__init__", - "msecs": 913.2978916168213, + "msecs": 95.11160850524902, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 10989.347696304321, + "relativeCreated": 11007.418632507324, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:29,913", - "created": 1580279009.9134164, + "asctime": "2020-12-21 22:33:12,095", + "created": 1608586392.0952966, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "WARNING", "levelno": 30, - "lineno": 259, + "lineno": 277, "message": "SJP: Received message with no registered callback. Sending negative response.", "module": "__init__", - "msecs": 913.4163856506348, + "msecs": 95.29662132263184, "msg": "%s Received message with no registered callback. Sending negative response.", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 10989.466190338135, + "relativeCreated": 11007.603645324707, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -18951,32 +19011,32 @@ 48879, "None" ], - "asctime": "2020-01-29 07:23:29,913", - "created": 1580279009.9135296, + "asctime": "2020-12-21 22:33:12,095", + "created": 1608586392.0954504, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 334, + "lineno": 352, "message": "SJP: TX -> status: 1, service_id: 11, data_id: 48879, data: \"None\"", "module": "__init__", - "msecs": 913.529634475708, + "msecs": 95.45040130615234, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 10989.579439163208, + "relativeCreated": 11007.757425308228, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-01-29 07:23:29,913", - "created": 1580279009.9137316, + "asctime": "2020-12-21 22:33:12,095", + "created": 1608586392.095791, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -18986,21 +19046,21 @@ "lineno": 55, "message": "Send data: (67): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 17 0c 52 31", "module": "test_helpers", - "msecs": 913.731575012207, + "msecs": 95.79110145568848, "msg": "Send data: (67): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 17 0c 52 31", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 10989.781379699707, + "relativeCreated": 11008.098125457764, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-01-29 07:23:29,913", - "created": 1580279009.9138823, + "asctime": "2020-12-21 22:33:12,096", + "created": 1608586392.096043, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -19010,15 +19070,15 @@ "lineno": 66, "message": "Receive data (67): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 17 0c 52 31", "module": "test_helpers", - "msecs": 913.8822555541992, + "msecs": 96.04310989379883, "msg": "Receive data (67): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 17 0c 52 31", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 10989.9320602417, + "relativeCreated": 11008.350133895874, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -19029,26 +19089,26 @@ "48879", "None" ], - "asctime": "2020-01-29 07:23:29,914", - "created": 1580279009.9140315, + "asctime": "2020-12-21 22:33:12,096", + "created": 1608586392.0962644, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 247, + "lineno": 259, "message": "SJP: RX <- status: 1, service_id: 11, data_id: 48879, data: \"None\"", "module": "__init__", - "msecs": 914.0315055847168, + "msecs": 96.26436233520508, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 10990.081310272217, + "relativeCreated": 11008.57138633728, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -19056,26 +19116,26 @@ "SJP:", "Request has no callback. Data buffered." ], - "asctime": "2020-01-29 07:23:29,914", - "created": 1580279009.9141414, + "asctime": "2020-12-21 22:33:12,096", + "created": 1608586392.0964465, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "WARNING", "levelno": 30, - "lineno": 274, + "lineno": 292, "message": "SJP: Received message has a peculiar status: Request has no callback. Data buffered.", "module": "__init__", - "msecs": 914.1414165496826, + "msecs": 96.44651412963867, "msg": "%s Received message has a peculiar status: %s", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 10990.191221237183, + "relativeCreated": 11008.753538131714, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -19083,48 +19143,48 @@ "SJP:", "response_data_method_fail" ], - "asctime": "2020-01-29 07:23:29,920", - "created": 1580279009.9204462, + "asctime": "2020-12-21 22:33:12,096", + "created": 1608586392.096589, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 281, + "lineno": 299, "message": "SJP: Executing callback response_data_method_fail to process received data", "module": "__init__", - "msecs": 920.4461574554443, + "msecs": 96.5890884399414, "msg": "%s Executing callback %s to process received data", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 10996.495962142944, + "relativeCreated": 11008.896112442017, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" } ], - "msecs": 921.5087890625, + "msecs": 96.94075584411621, "msg": "Send and received data with incompatible callback (pure_json_protocol).", "name": "__tLogger__", "pathname": "src/tests/test_handling_errors.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 10997.55859375, + "relativeCreated": 11009.247779846191, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread", - "time_consumption": 0.001062631607055664 + "time_consumption": 0.0003516674041748047 }, { "args": [ "True", "" ], - "asctime": "2020-01-29 07:23:29,922", - "created": 1580279009.9220479, + "asctime": "2020-12-21 22:33:12,097", + "created": 1608586392.0971234, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -19141,8 +19201,8 @@ "True", "" ], - "asctime": "2020-01-29 07:23:29,921", - "created": 1580279009.9217713, + "asctime": "2020-12-21 22:33:12,097", + "created": 1608586392.0970283, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -19152,15 +19212,15 @@ "lineno": 22, "message": "Result (Exception (TypeError) detection variable): True ()", "module": "test", - "msecs": 921.7712879180908, + "msecs": 97.02825546264648, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 10997.82109260559, + "relativeCreated": 11009.335279464722, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -19169,8 +19229,8 @@ "True", "" ], - "asctime": "2020-01-29 07:23:29,921", - "created": 1580279009.9219286, + "asctime": "2020-12-21 22:33:12,097", + "created": 1608586392.097078, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -19180,37 +19240,37 @@ "lineno": 26, "message": "Expectation (Exception (TypeError) detection variable): result = True ()", "module": "test", - "msecs": 921.9286441802979, + "msecs": 97.07808494567871, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 10997.978448867798, + "relativeCreated": 11009.385108947754, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" } ], - "msecs": 922.0478534698486, + "msecs": 97.12338447570801, "msg": "Exception (TypeError) detection variable is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 10998.097658157349, + "relativeCreated": 11009.430408477783, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread", - "time_consumption": 0.00011920928955078125 + "time_consumption": 4.5299530029296875e-05 }, { "args": [ "None", "" ], - "asctime": "2020-01-29 07:23:30,023", - "created": 1580279010.0230722, + "asctime": "2020-12-21 22:33:12,198", + "created": 1608586392.1980443, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -19228,26 +19288,26 @@ "11", "45054" ], - "asctime": "2020-01-29 07:23:30,022", - "created": 1580279010.0224452, + "asctime": "2020-12-21 22:33:12,197", + "created": 1608586392.197526, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 309, + "lineno": 327, "message": "SJP: TIMEOUT (0.1s): Requested data (service_id: 11; data_id: 45054) not in buffer.", "module": "__init__", - "msecs": 22.445201873779297, + "msecs": 197.5259780883789, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 11098.49500656128, + "relativeCreated": 11109.833002090454, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -19256,8 +19316,8 @@ "None", "" ], - "asctime": "2020-01-29 07:23:30,022", - "created": 1580279010.0227523, + "asctime": "2020-12-21 22:33:12,197", + "created": 1608586392.197783, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -19267,15 +19327,15 @@ "lineno": 22, "message": "Result (Return Value (request instance) for pure_json_protocol.receive with data data_id 0xaffe): None ()", "module": "test", - "msecs": 22.75228500366211, + "msecs": 197.7829933166504, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 11098.802089691162, + "relativeCreated": 11110.090017318726, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -19284,8 +19344,8 @@ "None", "" ], - "asctime": "2020-01-29 07:23:30,022", - "created": 1580279010.0229323, + "asctime": "2020-12-21 22:33:12,197", + "created": 1608586392.1979191, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -19295,37 +19355,37 @@ "lineno": 26, "message": "Expectation (Return Value (request instance) for pure_json_protocol.receive with data data_id 0xaffe): result = None ()", "module": "test", - "msecs": 22.93229103088379, + "msecs": 197.91913032531738, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 11098.982095718384, + "relativeCreated": 11110.226154327393, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" } ], - "msecs": 23.072242736816406, + "msecs": 198.0443000793457, "msg": "Return Value (request instance) for pure_json_protocol.receive with data data_id 0xaffe is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 11099.122047424316, + "relativeCreated": 11110.35132408142, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread", - "time_consumption": 0.0001399517059326172 + "time_consumption": 0.0001251697540283203 }, { "args": [ "None", "" ], - "asctime": "2020-01-29 07:23:30,123", - "created": 1580279010.1237733, + "asctime": "2020-12-21 22:33:12,299", + "created": 1608586392.2991974, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -19343,26 +19403,26 @@ "10", "45054" ], - "asctime": "2020-01-29 07:23:30,123", - "created": 1580279010.123457, + "asctime": "2020-12-21 22:33:12,298", + "created": 1608586392.2986028, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 309, + "lineno": 327, "message": "SJP: TIMEOUT (0.1s): Requested data (service_id: 10; data_id: 45054) not in buffer.", "module": "__init__", - "msecs": 123.45695495605469, + "msecs": 298.602819442749, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 11199.506759643555, + "relativeCreated": 11210.909843444824, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -19371,8 +19431,8 @@ "None", "" ], - "asctime": "2020-01-29 07:23:30,123", - "created": 1580279010.1236205, + "asctime": "2020-12-21 22:33:12,298", + "created": 1608586392.2988844, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -19382,15 +19442,15 @@ "lineno": 22, "message": "Result (Return Value (response instance) for pure_json_protocol.receive with data data_id 0xaffe): None ()", "module": "test", - "msecs": 123.62051010131836, + "msecs": 298.88439178466797, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 11199.670314788818, + "relativeCreated": 11211.191415786743, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -19399,8 +19459,8 @@ "None", "" ], - "asctime": "2020-01-29 07:23:30,123", - "created": 1580279010.1236954, + "asctime": "2020-12-21 22:33:12,299", + "created": 1608586392.2990348, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -19410,37 +19470,37 @@ "lineno": 26, "message": "Expectation (Return Value (response instance) for pure_json_protocol.receive with data data_id 0xaffe): result = None ()", "module": "test", - "msecs": 123.69537353515625, + "msecs": 299.03483390808105, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 11199.745178222656, + "relativeCreated": 11211.341857910156, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" } ], - "msecs": 123.77333641052246, + "msecs": 299.1974353790283, "msg": "Return Value (response instance) for pure_json_protocol.receive with data data_id 0xaffe is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 11199.823141098022, + "relativeCreated": 11211.504459381104, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread", - "time_consumption": 7.796287536621094e-05 + "time_consumption": 0.00016260147094726562 }, { "args": [ "True", "" ], - "asctime": "2020-01-29 07:23:30,124", - "created": 1580279010.1240504, + "asctime": "2020-12-21 22:33:12,299", + "created": 1608586392.299697, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -19457,8 +19517,8 @@ "True", "" ], - "asctime": "2020-01-29 07:23:30,123", - "created": 1580279010.1238942, + "asctime": "2020-12-21 22:33:12,299", + "created": 1608586392.2994423, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -19468,15 +19528,15 @@ "lineno": 22, "message": "Result (Exception (TypeError) detection variable): True ()", "module": "test", - "msecs": 123.89421463012695, + "msecs": 299.4422912597656, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 11199.944019317627, + "relativeCreated": 11211.74931526184, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -19485,8 +19545,8 @@ "True", "" ], - "asctime": "2020-01-29 07:23:30,123", - "created": 1580279010.1239674, + "asctime": "2020-12-21 22:33:12,299", + "created": 1608586392.299573, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -19496,37 +19556,37 @@ "lineno": 26, "message": "Expectation (Exception (TypeError) detection variable): result = True ()", "module": "test", - "msecs": 123.96740913391113, + "msecs": 299.5729446411133, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 11200.017213821411, + "relativeCreated": 11211.879968643188, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" } ], - "msecs": 124.05037879943848, + "msecs": 299.6969223022461, "msg": "Exception (TypeError) detection variable is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 11200.100183486938, + "relativeCreated": 11212.003946304321, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread", - "time_consumption": 8.296966552734375e-05 + "time_consumption": 0.0001239776611328125 }, { "args": [ "None", "" ], - "asctime": "2020-01-29 07:23:30,224", - "created": 1580279010.2246342, + "asctime": "2020-12-21 22:33:12,400", + "created": 1608586392.400873, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -19544,26 +19604,26 @@ "11", "48879" ], - "asctime": "2020-01-29 07:23:30,224", - "created": 1580279010.2243383, + "asctime": "2020-12-21 22:33:12,400", + "created": 1608586392.400238, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 309, + "lineno": 327, "message": "SJP: TIMEOUT (0.1s): Requested data (service_id: 11; data_id: 48879) not in buffer.", "module": "__init__", - "msecs": 224.33829307556152, + "msecs": 400.238037109375, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 11300.388097763062, + "relativeCreated": 11312.54506111145, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -19572,8 +19632,8 @@ "None", "" ], - "asctime": "2020-01-29 07:23:30,224", - "created": 1580279010.2244954, + "asctime": "2020-12-21 22:33:12,400", + "created": 1608586392.400522, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -19583,15 +19643,15 @@ "lineno": 22, "message": "Result (Return Value (request instance) for pure_json_protocol.receive with data data_id 0xbeef): None ()", "module": "test", - "msecs": 224.49541091918945, + "msecs": 400.52199363708496, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 11300.54521560669, + "relativeCreated": 11312.82901763916, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -19600,8 +19660,8 @@ "None", "" ], - "asctime": "2020-01-29 07:23:30,224", - "created": 1580279010.2245662, + "asctime": "2020-12-21 22:33:12,400", + "created": 1608586392.4006913, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -19611,37 +19671,37 @@ "lineno": 26, "message": "Expectation (Return Value (request instance) for pure_json_protocol.receive with data data_id 0xbeef): result = None ()", "module": "test", - "msecs": 224.56622123718262, + "msecs": 400.69127082824707, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 11300.616025924683, + "relativeCreated": 11312.998294830322, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" } ], - "msecs": 224.63417053222656, + "msecs": 400.87294578552246, "msg": "Return Value (request instance) for pure_json_protocol.receive with data data_id 0xbeef is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 11300.683975219727, + "relativeCreated": 11313.179969787598, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread", - "time_consumption": 6.794929504394531e-05 + "time_consumption": 0.00018167495727539062 }, { "args": [ "None", "" ], - "asctime": "2020-01-29 07:23:30,325", - "created": 1580279010.3253584, + "asctime": "2020-12-21 22:33:12,502", + "created": 1608586392.502145, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -19659,26 +19719,26 @@ "10", "48879" ], - "asctime": "2020-01-29 07:23:30,324", - "created": 1580279010.3249545, + "asctime": "2020-12-21 22:33:12,501", + "created": 1608586392.5014794, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 309, + "lineno": 327, "message": "SJP: TIMEOUT (0.1s): Requested data (service_id: 10; data_id: 48879) not in buffer.", "module": "__init__", - "msecs": 324.9545097351074, + "msecs": 501.4793872833252, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 11401.004314422607, + "relativeCreated": 11413.7864112854, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -19687,8 +19747,8 @@ "None", "" ], - "asctime": "2020-01-29 07:23:30,325", - "created": 1580279010.325152, + "asctime": "2020-12-21 22:33:12,501", + "created": 1608586392.5018132, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -19698,15 +19758,15 @@ "lineno": 22, "message": "Result (Return Value (response instance) for pure_json_protocol.receive with data data_id 0xbeef): None ()", "module": "test", - "msecs": 325.1519203186035, + "msecs": 501.8131732940674, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 11401.201725006104, + "relativeCreated": 11414.120197296143, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -19715,8 +19775,8 @@ "None", "" ], - "asctime": "2020-01-29 07:23:30,325", - "created": 1580279010.3252778, + "asctime": "2020-12-21 22:33:12,501", + "created": 1608586392.501987, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -19726,41 +19786,41 @@ "lineno": 26, "message": "Expectation (Return Value (response instance) for pure_json_protocol.receive with data data_id 0xbeef): result = None ()", "module": "test", - "msecs": 325.27780532836914, + "msecs": 501.9869804382324, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 11401.32761001587, + "relativeCreated": 11414.294004440308, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" } ], - "msecs": 325.35839080810547, + "msecs": 502.14505195617676, "msg": "Return Value (response instance) for pure_json_protocol.receive with data data_id 0xbeef is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 11401.408195495605, + "relativeCreated": 11414.452075958252, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread", - "time_consumption": 8.058547973632812e-05 + "time_consumption": 0.00015807151794433594 } ], - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread", - "time_consumption": 0.41428327560424805, - "time_finished": "2020-01-29 07:23:30,325", - "time_start": "2020-01-29 07:23:29,911" + "time_consumption": 0.41037726402282715, + "time_finished": "2020-12-21 22:33:12,502", + "time_start": "2020-12-21 22:33:12,091" }, "socket_protocol.pure_json_protocol: No Callback at response instance for the request.": { "args": null, - "asctime": "2020-01-29 07:23:27,766", - "created": 1580279007.7666037, + "asctime": "2020-12-21 22:33:09,968", + "created": 1608586389.9689164, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -19771,19 +19831,19 @@ "message": "socket_protocol.pure_json_protocol: No Callback at response instance for the request.", "module": "__init__", "moduleLogger": [], - "msecs": 766.6037082672119, + "msecs": 968.9164161682129, "msg": "socket_protocol.pure_json_protocol: No Callback at response instance for the request.", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 8842.653512954712, + "relativeCreated": 8881.223440170288, "stack_info": null, "testcaseLogger": [ { "args": [], - "asctime": "2020-01-29 07:23:28,281", - "created": 1580279008.2815151, + "asctime": "2020-12-21 22:33:10,472", + "created": 1608586390.4725976, "exc_info": null, "exc_text": null, "filename": "test_handling_errors.py", @@ -19798,104 +19858,104 @@ "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:27,766", - "created": 1580279007.766747, + "asctime": "2020-12-21 22:33:09,969", + "created": 1608586389.969212, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 295, + "lineno": 313, "message": "SJP: Cleaning up receive-buffer", "module": "__init__", - "msecs": 766.746997833252, + "msecs": 969.2120552062988, "msg": "%s Cleaning up receive-buffer", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 8842.796802520752, + "relativeCreated": 8881.519079208374, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:27,766", - "created": 1580279007.766914, + "asctime": "2020-12-21 22:33:09,969", + "created": 1608586389.9695218, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 199, + "lineno": 217, "message": "SJP: Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "module": "__init__", - "msecs": 766.913890838623, + "msecs": 969.5217609405518, "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 8842.963695526123, + "relativeCreated": 8881.828784942627, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:27,767", - "created": 1580279007.7670138, + "asctime": "2020-12-21 22:33:09,969", + "created": 1608586389.9696991, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 295, + "lineno": 313, "message": "SJP: Cleaning up receive-buffer", "module": "__init__", - "msecs": 767.0137882232666, + "msecs": 969.6991443634033, "msg": "%s Cleaning up receive-buffer", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 8843.063592910767, + "relativeCreated": 8882.006168365479, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:27,767", - "created": 1580279007.767148, + "asctime": "2020-12-21 22:33:09,969", + "created": 1608586389.9699502, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 199, + "lineno": 217, "message": "SJP: Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "module": "__init__", - "msecs": 767.1480178833008, + "msecs": 969.9501991271973, "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 8843.1978225708, + "relativeCreated": 8882.257223129272, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -19906,32 +19966,32 @@ 45054, "{'test': 'test'}" ], - "asctime": "2020-01-29 07:23:27,767", - "created": 1580279007.7672496, + "asctime": "2020-12-21 22:33:09,970", + "created": 1608586389.970128, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 334, + "lineno": 352, "message": "SJP: TX -> status: 0, service_id: 10, data_id: 45054, data: \"{'test': 'test'}\"", "module": "__init__", - "msecs": 767.249584197998, + "msecs": 970.128059387207, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 8843.299388885498, + "relativeCreated": 8882.435083389282, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-01-29 07:23:27,767", - "created": 1580279007.7674663, + "asctime": "2020-12-21 22:33:09,970", + "created": 1608586389.970528, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -19941,21 +20001,21 @@ "lineno": 55, "message": "Send data: (79): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 7d 82 1c 8b 89", "module": "test_helpers", - "msecs": 767.4663066864014, + "msecs": 970.5278873443604, "msg": "Send data: (79): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 7d 82 1c 8b 89", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 8843.516111373901, + "relativeCreated": 8882.834911346436, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-01-29 07:23:27,929", - "created": 1580279007.9295094, + "asctime": "2020-12-21 22:33:10,121", + "created": 1608586390.1215096, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -19965,15 +20025,15 @@ "lineno": 66, "message": "Receive data (79): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 7d 82 1c 8b 89", "module": "test_helpers", - "msecs": 929.5094013214111, + "msecs": 121.50955200195312, "msg": "Receive data (79): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 7d 82 1c 8b 89", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 9005.559206008911, + "relativeCreated": 9033.816576004028, "stack_info": null, - "thread": 139631579064064, + "thread": 139622161319680, "threadName": "Thread-24" }, { @@ -19984,52 +20044,52 @@ "45054", "{'test': 'test'}" ], - "asctime": "2020-01-29 07:23:27,929", - "created": 1580279007.9297314, + "asctime": "2020-12-21 22:33:10,121", + "created": 1608586390.1219282, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 247, + "lineno": 259, "message": "SJP: RX <- status: 0, service_id: 10, data_id: 45054, data: \"{'test': 'test'}\"", "module": "__init__", - "msecs": 929.7313690185547, + "msecs": 121.92821502685547, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 9005.781173706055, + "relativeCreated": 9034.23523902893, "stack_info": null, - "thread": 139631579064064, + "thread": 139622161319680, "threadName": "Thread-24" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:27,929", - "created": 1580279007.9298408, + "asctime": "2020-12-21 22:33:10,122", + "created": 1608586390.122152, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "WARNING", "levelno": 30, - "lineno": 259, + "lineno": 277, "message": "SJP: Received message with no registered callback. Sending negative response.", "module": "__init__", - "msecs": 929.8408031463623, + "msecs": 122.15209007263184, "msg": "%s Received message with no registered callback. Sending negative response.", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 9005.890607833862, + "relativeCreated": 9034.459114074707, "stack_info": null, - "thread": 139631579064064, + "thread": 139622161319680, "threadName": "Thread-24" }, { @@ -20040,32 +20100,32 @@ 45054, "None" ], - "asctime": "2020-01-29 07:23:27,929", - "created": 1580279007.929949, + "asctime": "2020-12-21 22:33:10,122", + "created": 1608586390.1223588, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 334, + "lineno": 352, "message": "SJP: TX -> status: 1, service_id: 11, data_id: 45054, data: \"None\"", "module": "__init__", - "msecs": 929.9490451812744, + "msecs": 122.35879898071289, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 9005.998849868774, + "relativeCreated": 9034.665822982788, "stack_info": null, - "thread": 139631579064064, + "thread": 139622161319680, "threadName": "Thread-24" }, { "args": [], - "asctime": "2020-01-29 07:23:27,930", - "created": 1580279007.930135, + "asctime": "2020-12-21 22:33:10,122", + "created": 1608586390.1227303, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -20075,21 +20135,21 @@ "lineno": 55, "message": "Send data: (67): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 24 86 3f 75", "module": "test_helpers", - "msecs": 930.1350116729736, + "msecs": 122.73025512695312, "msg": "Send data: (67): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 24 86 3f 75", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 9006.184816360474, + "relativeCreated": 9035.037279129028, "stack_info": null, - "thread": 139631579064064, + "thread": 139622161319680, "threadName": "Thread-24" }, { "args": [], - "asctime": "2020-01-29 07:23:28,080", - "created": 1580279008.0808003, + "asctime": "2020-12-21 22:33:10,273", + "created": 1608586390.2736678, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -20099,15 +20159,15 @@ "lineno": 66, "message": "Receive data (67): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 24 86 3f 75", "module": "test_helpers", - "msecs": 80.80029487609863, + "msecs": 273.6678123474121, "msg": "Receive data (67): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 31 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 24 86 3f 75", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 9156.850099563599, + "relativeCreated": 9185.974836349487, "stack_info": null, - "thread": 139631570671360, + "thread": 139622152926976, "threadName": "Thread-25" }, { @@ -20118,26 +20178,26 @@ "45054", "None" ], - "asctime": "2020-01-29 07:23:28,081", - "created": 1580279008.0810087, + "asctime": "2020-12-21 22:33:10,274", + "created": 1608586390.2740798, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 247, + "lineno": 259, "message": "SJP: RX <- status: 1, service_id: 11, data_id: 45054, data: \"None\"", "module": "__init__", - "msecs": 81.0086727142334, + "msecs": 274.0797996520996, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 9157.058477401733, + "relativeCreated": 9186.386823654175, "stack_info": null, - "thread": 139631570671360, + "thread": 139622152926976, "threadName": "Thread-25" }, { @@ -20145,74 +20205,74 @@ "SJP:", "Request has no callback. Data buffered." ], - "asctime": "2020-01-29 07:23:28,081", - "created": 1580279008.0811162, + "asctime": "2020-12-21 22:33:10,274", + "created": 1608586390.2743444, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "WARNING", "levelno": 30, - "lineno": 274, + "lineno": 292, "message": "SJP: Received message has a peculiar status: Request has no callback. Data buffered.", "module": "__init__", - "msecs": 81.1161994934082, + "msecs": 274.34444427490234, "msg": "%s Received message has a peculiar status: %s", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 9157.166004180908, + "relativeCreated": 9186.651468276978, "stack_info": null, - "thread": 139631570671360, + "thread": 139622152926976, "threadName": "Thread-25" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:28,081", - "created": 1580279008.081201, + "asctime": "2020-12-21 22:33:10,274", + "created": 1608586390.2745316, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 292, + "lineno": 310, "message": "SJP: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 81.20107650756836, + "msecs": 274.53160285949707, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 9157.250881195068, + "relativeCreated": 9186.838626861572, "stack_info": null, - "thread": 139631570671360, + "thread": 139622152926976, "threadName": "Thread-25" } ], - "msecs": 281.51512145996094, + "msecs": 472.597599029541, "msg": "Send data, but no callback registered (pure_json_protocol).", "name": "__tLogger__", "pathname": "src/tests/test_handling_errors.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 9357.564926147461, + "relativeCreated": 9384.904623031616, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread", - "time_consumption": 0.20031404495239258 + "time_consumption": 0.19806599617004395 }, { "args": [ "True", "" ], - "asctime": "2020-01-29 07:23:28,281", - "created": 1580279008.2818942, + "asctime": "2020-12-21 22:33:10,472", + "created": 1608586390.4729533, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -20229,8 +20289,8 @@ "True", "" ], - "asctime": "2020-01-29 07:23:28,281", - "created": 1580279008.2817442, + "asctime": "2020-12-21 22:33:10,472", + "created": 1608586390.4728012, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -20240,15 +20300,15 @@ "lineno": 22, "message": "Result (Return value of send method): True ()", "module": "test", - "msecs": 281.74424171447754, + "msecs": 472.80120849609375, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 9357.794046401978, + "relativeCreated": 9385.108232498169, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -20257,8 +20317,8 @@ "True", "" ], - "asctime": "2020-01-29 07:23:28,281", - "created": 1580279008.281826, + "asctime": "2020-12-21 22:33:10,472", + "created": 1608586390.47288, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -20268,37 +20328,37 @@ "lineno": 26, "message": "Expectation (Return value of send method): result = True ()", "module": "test", - "msecs": 281.8260192871094, + "msecs": 472.87988662719727, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 9357.87582397461, + "relativeCreated": 9385.186910629272, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" } ], - "msecs": 281.8942070007324, + "msecs": 472.95331954956055, "msg": "Return value of send method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 9357.944011688232, + "relativeCreated": 9385.260343551636, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread", - "time_consumption": 6.818771362304688e-05 + "time_consumption": 7.343292236328125e-05 }, { "args": [ "1", "" ], - "asctime": "2020-01-29 07:23:28,282", - "created": 1580279008.2821217, + "asctime": "2020-12-21 22:33:10,473", + "created": 1608586390.4731412, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -20315,8 +20375,8 @@ "1", "" ], - "asctime": "2020-01-29 07:23:28,281", - "created": 1580279008.2819896, + "asctime": "2020-12-21 22:33:10,473", + "created": 1608586390.473043, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -20326,15 +20386,15 @@ "lineno": 22, "message": "Result (Response Status (Request has no callback. Data buffered.) transfered via pure_json_protocol): 1 ()", "module": "test", - "msecs": 281.98957443237305, + "msecs": 473.04296493530273, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 9358.039379119873, + "relativeCreated": 9385.349988937378, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -20343,8 +20403,8 @@ "1", "" ], - "asctime": "2020-01-29 07:23:28,282", - "created": 1580279008.2820544, + "asctime": "2020-12-21 22:33:10,473", + "created": 1608586390.4730945, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -20354,37 +20414,37 @@ "lineno": 26, "message": "Expectation (Response Status (Request has no callback. Data buffered.) transfered via pure_json_protocol): result = 1 ()", "module": "test", - "msecs": 282.0544242858887, + "msecs": 473.0944633483887, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 9358.104228973389, + "relativeCreated": 9385.401487350464, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" } ], - "msecs": 282.1216583251953, + "msecs": 473.1411933898926, "msg": "Response Status (Request has no callback. Data buffered.) transfered via pure_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 9358.171463012695, + "relativeCreated": 9385.448217391968, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread", - "time_consumption": 6.723403930664062e-05 + "time_consumption": 4.673004150390625e-05 }, { "args": [ "None", "" ], - "asctime": "2020-01-29 07:23:28,282", - "created": 1580279008.2823398, + "asctime": "2020-12-21 22:33:10,473", + "created": 1608586390.4733021, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -20401,8 +20461,8 @@ "None", "" ], - "asctime": "2020-01-29 07:23:28,282", - "created": 1580279008.2822163, + "asctime": "2020-12-21 22:33:10,473", + "created": 1608586390.4732184, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -20412,15 +20472,15 @@ "lineno": 22, "message": "Result (Response Data (no data) transfered via pure_json_protocol): None ()", "module": "test", - "msecs": 282.21631050109863, + "msecs": 473.2184410095215, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 9358.266115188599, + "relativeCreated": 9385.525465011597, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -20429,8 +20489,8 @@ "None", "" ], - "asctime": "2020-01-29 07:23:28,282", - "created": 1580279008.282277, + "asctime": "2020-12-21 22:33:10,473", + "created": 1608586390.4732623, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -20440,37 +20500,37 @@ "lineno": 26, "message": "Expectation (Response Data (no data) transfered via pure_json_protocol): result = None ()", "module": "test", - "msecs": 282.27710723876953, + "msecs": 473.2623100280762, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 9358.32691192627, + "relativeCreated": 9385.569334030151, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" } ], - "msecs": 282.33981132507324, + "msecs": 473.30212593078613, "msg": "Response Data (no data) transfered via pure_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 9358.389616012573, + "relativeCreated": 9385.609149932861, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread", - "time_consumption": 6.270408630371094e-05 + "time_consumption": 3.981590270996094e-05 }, { "args": [ "None", "" ], - "asctime": "2020-01-29 07:23:28,382", - "created": 1580279008.382939, + "asctime": "2020-12-21 22:33:10,573", + "created": 1608586390.5739002, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -20488,26 +20548,26 @@ "11", "45054" ], - "asctime": "2020-01-29 07:23:28,382", - "created": 1580279008.3826332, + "asctime": "2020-12-21 22:33:10,573", + "created": 1608586390.573559, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 309, + "lineno": 327, "message": "SJP: TIMEOUT (0.1s): Requested data (service_id: 11; data_id: 45054) not in buffer.", "module": "__init__", - "msecs": 382.6332092285156, + "msecs": 573.559045791626, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 9458.683013916016, + "relativeCreated": 9485.866069793701, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -20516,8 +20576,8 @@ "None", "" ], - "asctime": "2020-01-29 07:23:28,382", - "created": 1580279008.3827975, + "asctime": "2020-12-21 22:33:10,573", + "created": 1608586390.5737357, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -20527,15 +20587,15 @@ "lineno": 22, "message": "Result (Return Value (request instance) for pure_json_protocol.receive with data data_id 0xaffe): None ()", "module": "test", - "msecs": 382.7974796295166, + "msecs": 573.7357139587402, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 9458.847284317017, + "relativeCreated": 9486.042737960815, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -20544,8 +20604,8 @@ "None", "" ], - "asctime": "2020-01-29 07:23:28,382", - "created": 1580279008.3828692, + "asctime": "2020-12-21 22:33:10,573", + "created": 1608586390.5738294, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -20555,37 +20615,37 @@ "lineno": 26, "message": "Expectation (Return Value (request instance) for pure_json_protocol.receive with data data_id 0xaffe): result = None ()", "module": "test", - "msecs": 382.8692436218262, + "msecs": 573.8294124603271, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 9458.919048309326, + "relativeCreated": 9486.136436462402, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" } ], - "msecs": 382.93910026550293, + "msecs": 573.9002227783203, "msg": "Return Value (request instance) for pure_json_protocol.receive with data data_id 0xaffe is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 9458.988904953003, + "relativeCreated": 9486.207246780396, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread", - "time_consumption": 6.985664367675781e-05 + "time_consumption": 7.081031799316406e-05 }, { "args": [ "None", "" ], - "asctime": "2020-01-29 07:23:28,483", - "created": 1580279008.4836547, + "asctime": "2020-12-21 22:33:10,674", + "created": 1608586390.674888, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -20603,26 +20663,26 @@ "10", "45054" ], - "asctime": "2020-01-29 07:23:28,483", - "created": 1580279008.4833412, + "asctime": "2020-12-21 22:33:10,674", + "created": 1608586390.6742804, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 309, + "lineno": 327, "message": "SJP: TIMEOUT (0.1s): Requested data (service_id: 10; data_id: 45054) not in buffer.", "module": "__init__", - "msecs": 483.3412170410156, + "msecs": 674.2804050445557, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 9559.391021728516, + "relativeCreated": 9586.58742904663, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -20631,8 +20691,8 @@ "None", "" ], - "asctime": "2020-01-29 07:23:28,483", - "created": 1580279008.4835064, + "asctime": "2020-12-21 22:33:10,674", + "created": 1608586390.6745985, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -20642,15 +20702,15 @@ "lineno": 22, "message": "Result (Return Value (response instance) for pure_json_protocol.receive with data data_id 0xaffe): None ()", "module": "test", - "msecs": 483.506441116333, + "msecs": 674.5984554290771, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 9559.556245803833, + "relativeCreated": 9586.905479431152, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -20659,8 +20719,8 @@ "None", "" ], - "asctime": "2020-01-29 07:23:28,483", - "created": 1580279008.4835851, + "asctime": "2020-12-21 22:33:10,674", + "created": 1608586390.6747477, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -20670,41 +20730,41 @@ "lineno": 26, "message": "Expectation (Return Value (response instance) for pure_json_protocol.receive with data data_id 0xaffe): result = None ()", "module": "test", - "msecs": 483.5851192474365, + "msecs": 674.7477054595947, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 9559.634923934937, + "relativeCreated": 9587.05472946167, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" } ], - "msecs": 483.6547374725342, + "msecs": 674.8878955841064, "msg": "Return Value (response instance) for pure_json_protocol.receive with data data_id 0xaffe is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 9559.704542160034, + "relativeCreated": 9587.194919586182, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread", - "time_consumption": 6.961822509765625e-05 + "time_consumption": 0.00014019012451171875 } ], - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread", - "time_consumption": 0.7170510292053223, - "time_finished": "2020-01-29 07:23:28,483", - "time_start": "2020-01-29 07:23:27,766" + "time_consumption": 0.7059714794158936, + "time_finished": "2020-12-21 22:33:10,674", + "time_start": "2020-12-21 22:33:09,968" }, "socket_protocol.pure_json_protocol: Register a Callback which is already defined.": { "args": null, - "asctime": "2020-01-29 07:23:29,908", - "created": 1580279009.9081662, + "asctime": "2020-12-21 22:33:12,087", + "created": 1608586392.0877314, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -20715,19 +20775,19 @@ "message": "socket_protocol.pure_json_protocol: Register a Callback which is already defined.", "module": "__init__", "moduleLogger": [], - "msecs": 908.1661701202393, + "msecs": 87.73136138916016, "msg": "socket_protocol.pure_json_protocol: Register a Callback which is already defined.", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 10984.21597480774, + "relativeCreated": 11000.038385391235, "stack_info": null, "testcaseLogger": [ { "args": [], - "asctime": "2020-01-29 07:23:29,908", - "created": 1580279009.9088438, + "asctime": "2020-12-21 22:33:12,088", + "created": 1608586392.0885448, "exc_info": null, "exc_text": null, "filename": "test_handling_errors.py", @@ -20742,74 +20802,74 @@ "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:29,908", - "created": 1580279009.908416, + "asctime": "2020-12-21 22:33:12,088", + "created": 1608586392.0880008, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 295, + "lineno": 313, "message": "SJP: Cleaning up receive-buffer", "module": "__init__", - "msecs": 908.4160327911377, + "msecs": 88.00077438354492, "msg": "%s Cleaning up receive-buffer", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 10984.465837478638, + "relativeCreated": 11000.30779838562, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:29,908", - "created": 1580279009.9086561, + "asctime": "2020-12-21 22:33:12,088", + "created": 1608586392.0883076, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 199, + "lineno": 217, "message": "SJP: Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "module": "__init__", - "msecs": 908.656120300293, + "msecs": 88.30761909484863, "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 10984.705924987793, + "relativeCreated": 11000.614643096924, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" } ], - "msecs": 908.8437557220459, + "msecs": 88.54484558105469, "msg": "Registering two callbacks which overlap for at least one message (pure_json_protocol).", "name": "__tLogger__", "pathname": "src/tests/test_handling_errors.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 10984.893560409546, + "relativeCreated": 11000.85186958313, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread", - "time_consumption": 0.0001876354217529297 + "time_consumption": 0.0002372264862060547 }, { "args": [ "True", "" ], - "asctime": "2020-01-29 07:23:29,909", - "created": 1580279009.9092321, + "asctime": "2020-12-21 22:33:12,089", + "created": 1608586392.0891578, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -20826,8 +20886,8 @@ "True", "" ], - "asctime": "2020-01-29 07:23:29,909", - "created": 1580279009.9090176, + "asctime": "2020-12-21 22:33:12,088", + "created": 1608586392.0888445, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -20837,15 +20897,15 @@ "lineno": 22, "message": "Result (Exception (RegistrationError) detection variable): True ()", "module": "test", - "msecs": 909.0175628662109, + "msecs": 88.84453773498535, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 10985.067367553711, + "relativeCreated": 11001.15156173706, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -20854,8 +20914,8 @@ "True", "" ], - "asctime": "2020-01-29 07:23:29,909", - "created": 1580279009.9091303, + "asctime": "2020-12-21 22:33:12,089", + "created": 1608586392.089012, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -20865,41 +20925,41 @@ "lineno": 26, "message": "Expectation (Exception (RegistrationError) detection variable): result = True ()", "module": "test", - "msecs": 909.130334854126, + "msecs": 89.01190757751465, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 10985.180139541626, + "relativeCreated": 11001.31893157959, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" } ], - "msecs": 909.2321395874023, + "msecs": 89.1578197479248, "msg": "Exception (RegistrationError) detection variable is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 10985.281944274902, + "relativeCreated": 11001.46484375, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread", - "time_consumption": 0.00010180473327636719 + "time_consumption": 0.00014591217041015625 } ], - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread", - "time_consumption": 0.001065969467163086, - "time_finished": "2020-01-29 07:23:29,909", - "time_start": "2020-01-29 07:23:29,908" + "time_consumption": 0.0014264583587646484, + "time_finished": "2020-12-21 22:33:12,089", + "time_start": "2020-12-21 22:33:12,087" }, "socket_protocol.pure_json_protocol: Register a second Callback with the same service_id.": { "args": null, - "asctime": "2020-01-29 07:23:23,934", - "created": 1580279003.9346645, + "asctime": "2020-12-21 22:33:06,124", + "created": 1608586386.1249187, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -20910,19 +20970,19 @@ "message": "socket_protocol.pure_json_protocol: Register a second Callback with the same service_id.", "module": "__init__", "moduleLogger": [], - "msecs": 934.6644878387451, + "msecs": 124.91869926452637, "msg": "socket_protocol.pure_json_protocol: Register a second Callback with the same service_id.", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 5010.714292526245, + "relativeCreated": 5037.225723266602, "stack_info": null, "testcaseLogger": [ { "args": [], - "asctime": "2020-01-29 07:23:24,436", - "created": 1580279004.4368212, + "asctime": "2020-12-21 22:33:06,628", + "created": 1608586386.628689, "exc_info": null, "exc_text": null, "filename": "test_normal_operation.py", @@ -20937,104 +20997,104 @@ "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:23,934", - "created": 1580279003.9348016, + "asctime": "2020-12-21 22:33:06,125", + "created": 1608586386.125219, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 295, + "lineno": 313, "message": "SJP: Cleaning up receive-buffer", "module": "__init__", - "msecs": 934.8015785217285, + "msecs": 125.21910667419434, "msg": "%s Cleaning up receive-buffer", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 5010.8513832092285, + "relativeCreated": 5037.5261306762695, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:23,934", - "created": 1580279003.934961, + "asctime": "2020-12-21 22:33:06,125", + "created": 1608586386.125532, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 199, + "lineno": 217, "message": "SJP: Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "module": "__init__", - "msecs": 934.9610805511475, + "msecs": 125.53191184997559, "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 5011.0108852386475, + "relativeCreated": 5037.838935852051, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:23,935", - "created": 1580279003.9350495, + "asctime": "2020-12-21 22:33:06,125", + "created": 1608586386.12571, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 295, + "lineno": 313, "message": "SJP: Cleaning up receive-buffer", "module": "__init__", - "msecs": 935.0495338439941, + "msecs": 125.71001052856445, "msg": "%s Cleaning up receive-buffer", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 5011.099338531494, + "relativeCreated": 5038.01703453064, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:23,935", - "created": 1580279003.9351745, + "asctime": "2020-12-21 22:33:06,126", + "created": 1608586386.1260767, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 199, + "lineno": 217, "message": "SJP: Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "module": "__init__", - "msecs": 935.1744651794434, + "msecs": 126.07669830322266, "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 5011.224269866943, + "relativeCreated": 5038.383722305298, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -21045,32 +21105,32 @@ 45054, "{'test': 'test'}" ], - "asctime": "2020-01-29 07:23:23,935", - "created": 1580279003.9352877, + "asctime": "2020-12-21 22:33:06,126", + "created": 1608586386.1263237, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 334, + "lineno": 352, "message": "SJP: TX -> status: 0, service_id: 10, data_id: 45054, data: \"{'test': 'test'}\"", "module": "__init__", - "msecs": 935.2877140045166, + "msecs": 126.32369995117188, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 5011.337518692017, + "relativeCreated": 5038.630723953247, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-01-29 07:23:23,935", - "created": 1580279003.935489, + "asctime": "2020-12-21 22:33:06,126", + "created": 1608586386.126732, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -21080,21 +21140,21 @@ "lineno": 55, "message": "Send data: (79): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 7d 82 1c 8b 89", "module": "test_helpers", - "msecs": 935.4889392852783, + "msecs": 126.73211097717285, "msg": "Send data: (79): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 7d 82 1c 8b 89", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 5011.538743972778, + "relativeCreated": 5039.039134979248, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-01-29 07:23:24,086", - "created": 1580279004.0860364, + "asctime": "2020-12-21 22:33:06,277", + "created": 1608586386.2777593, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -21104,15 +21164,15 @@ "lineno": 66, "message": "Receive data (79): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 7d 82 1c 8b 89", "module": "test_helpers", - "msecs": 86.03644371032715, + "msecs": 277.759313583374, "msg": "Receive data (79): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 7d 82 1c 8b 89", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 5162.086248397827, + "relativeCreated": 5190.066337585449, "stack_info": null, - "thread": 139631570671360, + "thread": 139622152926976, "threadName": "Thread-17" }, { @@ -21123,26 +21183,26 @@ "45054", "{'test': 'test'}" ], - "asctime": "2020-01-29 07:23:24,086", - "created": 1580279004.0863137, + "asctime": "2020-12-21 22:33:06,278", + "created": 1608586386.2781825, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 247, + "lineno": 259, "message": "SJP: RX <- status: 0, service_id: 10, data_id: 45054, data: \"{'test': 'test'}\"", "module": "__init__", - "msecs": 86.31372451782227, + "msecs": 278.1825065612793, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 5162.363529205322, + "relativeCreated": 5190.4895305633545, "stack_info": null, - "thread": 139631570671360, + "thread": 139622152926976, "threadName": "Thread-17" }, { @@ -21150,26 +21210,26 @@ "SJP:", "response_data_method_2" ], - "asctime": "2020-01-29 07:23:24,086", - "created": 1580279004.0864344, + "asctime": "2020-12-21 22:33:06,278", + "created": 1608586386.2783833, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 264, + "lineno": 282, "message": "SJP: Executing callback response_data_method_2 to process received data", "module": "__init__", - "msecs": 86.43436431884766, + "msecs": 278.3832550048828, "msg": "%s Executing callback %s to process received data", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 5162.484169006348, + "relativeCreated": 5190.690279006958, "stack_info": null, - "thread": 139631570671360, + "thread": 139622152926976, "threadName": "Thread-17" }, { @@ -21180,32 +21240,32 @@ 45054, "[1, 3, 's']" ], - "asctime": "2020-01-29 07:23:24,086", - "created": 1580279004.0865355, + "asctime": "2020-12-21 22:33:06,278", + "created": 1608586386.2785609, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 334, + "lineno": 352, "message": "SJP: TX -> status: 5, service_id: 11, data_id: 45054, data: \"[1, 3, 's']\"", "module": "__init__", - "msecs": 86.53545379638672, + "msecs": 278.5608768463135, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 5162.585258483887, + "relativeCreated": 5190.867900848389, "stack_info": null, - "thread": 139631570671360, + "thread": 139622152926976, "threadName": "Thread-17" }, { "args": [], - "asctime": "2020-01-29 07:23:24,086", - "created": 1580279004.086759, + "asctime": "2020-12-21 22:33:06,278", + "created": 1608586386.2789648, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -21215,21 +21275,21 @@ "lineno": 55, "message": "Send data: (74): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 35 2c 20 22 64 61 74 61 22 3a 20 5b 31 2c 20 33 2c 20 22 73 22 5d 7d 60 f8 dc 89", "module": "test_helpers", - "msecs": 86.75909042358398, + "msecs": 278.9647579193115, "msg": "Send data: (74): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 35 2c 20 22 64 61 74 61 22 3a 20 5b 31 2c 20 33 2c 20 22 73 22 5d 7d 60 f8 dc 89", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 5162.808895111084, + "relativeCreated": 5191.271781921387, "stack_info": null, - "thread": 139631570671360, + "thread": 139622152926976, "threadName": "Thread-17" }, { "args": [], - "asctime": "2020-01-29 07:23:24,237", - "created": 1580279004.2374558, + "asctime": "2020-12-21 22:33:06,429", + "created": 1608586386.4298801, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -21239,15 +21299,15 @@ "lineno": 66, "message": "Receive data (74): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 35 2c 20 22 64 61 74 61 22 3a 20 5b 31 2c 20 33 2c 20 22 73 22 5d 7d 60 f8 dc 89", "module": "test_helpers", - "msecs": 237.4558448791504, + "msecs": 429.88014221191406, "msg": "Receive data (74): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 35 2c 20 22 64 61 74 61 22 3a 20 5b 31 2c 20 33 2c 20 22 73 22 5d 7d 60 f8 dc 89", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 5313.50564956665, + "relativeCreated": 5342.187166213989, "stack_info": null, - "thread": 139631579064064, + "thread": 139622161319680, "threadName": "Thread-18" }, { @@ -21258,26 +21318,26 @@ "45054", "[1, 3, 's']" ], - "asctime": "2020-01-29 07:23:24,237", - "created": 1580279004.2378764, + "asctime": "2020-12-21 22:33:06,430", + "created": 1608586386.430322, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 247, + "lineno": 259, "message": "SJP: RX <- status: 5, service_id: 11, data_id: 45054, data: \"[1, 3, 's']\"", "module": "__init__", - "msecs": 237.87641525268555, + "msecs": 430.32193183898926, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 5313.926219940186, + "relativeCreated": 5342.628955841064, "stack_info": null, - "thread": 139631579064064, + "thread": 139622161319680, "threadName": "Thread-18" }, { @@ -21285,74 +21345,74 @@ "SJP:", "Operation not permitted" ], - "asctime": "2020-01-29 07:23:24,238", - "created": 1580279004.2381284, + "asctime": "2020-12-21 22:33:06,430", + "created": 1608586386.430595, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "WARNING", "levelno": 30, - "lineno": 274, + "lineno": 292, "message": "SJP: Received message has a peculiar status: Operation not permitted", "module": "__init__", - "msecs": 238.1284236907959, + "msecs": 430.59492111206055, "msg": "%s Received message has a peculiar status: %s", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 5314.178228378296, + "relativeCreated": 5342.901945114136, "stack_info": null, - "thread": 139631579064064, + "thread": 139622161319680, "threadName": "Thread-18" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:24,238", - "created": 1580279004.2383282, + "asctime": "2020-12-21 22:33:06,430", + "created": 1608586386.430781, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 292, + "lineno": 310, "message": "SJP: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 238.328218460083, + "msecs": 430.78088760375977, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 5314.378023147583, + "relativeCreated": 5343.087911605835, "stack_info": null, - "thread": 139631579064064, + "thread": 139622161319680, "threadName": "Thread-18" } ], - "msecs": 436.82122230529785, + "msecs": 628.6890506744385, "msg": "Send and received data by pure_json_protocol.", "name": "__tLogger__", "pathname": "src/tests/test_normal_operation.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 5512.871026992798, + "relativeCreated": 5540.996074676514, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread", - "time_consumption": 0.19849300384521484 + "time_consumption": 0.1979081630706787 }, { "args": [ "True", "" ], - "asctime": "2020-01-29 07:23:24,437", - "created": 1580279004.4372282, + "asctime": "2020-12-21 22:33:06,629", + "created": 1608586386.6295474, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -21369,8 +21429,8 @@ "True", "" ], - "asctime": "2020-01-29 07:23:24,437", - "created": 1580279004.4370553, + "asctime": "2020-12-21 22:33:06,629", + "created": 1608586386.6291857, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -21380,15 +21440,15 @@ "lineno": 22, "message": "Result (Return value of send method): True ()", "module": "test", - "msecs": 437.0553493499756, + "msecs": 629.185676574707, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 5513.105154037476, + "relativeCreated": 5541.492700576782, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -21397,8 +21457,8 @@ "True", "" ], - "asctime": "2020-01-29 07:23:24,437", - "created": 1580279004.4371486, + "asctime": "2020-12-21 22:33:06,629", + "created": 1608586386.6293736, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -21408,37 +21468,37 @@ "lineno": 26, "message": "Expectation (Return value of send method): result = True ()", "module": "test", - "msecs": 437.1485710144043, + "msecs": 629.3735504150391, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 5513.198375701904, + "relativeCreated": 5541.680574417114, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" } ], - "msecs": 437.2282028198242, + "msecs": 629.5473575592041, "msg": "Return value of send method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 5513.278007507324, + "relativeCreated": 5541.854381561279, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread", - "time_consumption": 7.963180541992188e-05 + "time_consumption": 0.00017380714416503906 }, { "args": [ "0", "" ], - "asctime": "2020-01-29 07:23:24,437", - "created": 1580279004.437508, + "asctime": "2020-12-21 22:33:06,630", + "created": 1608586386.6301365, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -21455,8 +21515,8 @@ "0", "" ], - "asctime": "2020-01-29 07:23:24,437", - "created": 1580279004.4373634, + "asctime": "2020-12-21 22:33:06,629", + "created": 1608586386.6298094, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -21466,15 +21526,15 @@ "lineno": 22, "message": "Result (Request Status (Okay) transfered via pure_json_protocol): 0 ()", "module": "test", - "msecs": 437.3633861541748, + "msecs": 629.8093795776367, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 5513.413190841675, + "relativeCreated": 5542.116403579712, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -21483,8 +21543,8 @@ "0", "" ], - "asctime": "2020-01-29 07:23:24,437", - "created": 1580279004.4374382, + "asctime": "2020-12-21 22:33:06,629", + "created": 1608586386.6299756, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -21494,37 +21554,37 @@ "lineno": 26, "message": "Expectation (Request Status (Okay) transfered via pure_json_protocol): result = 0 ()", "module": "test", - "msecs": 437.4382495880127, + "msecs": 629.9755573272705, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 5513.488054275513, + "relativeCreated": 5542.282581329346, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" } ], - "msecs": 437.50810623168945, + "msecs": 630.1364898681641, "msg": "Request Status (Okay) transfered via pure_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 5513.557910919189, + "relativeCreated": 5542.443513870239, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread", - "time_consumption": 6.985664367675781e-05 + "time_consumption": 0.0001609325408935547 }, { "args": [ "{'test': 'test'}", "" ], - "asctime": "2020-01-29 07:23:24,437", - "created": 1580279004.4377902, + "asctime": "2020-12-21 22:33:06,630", + "created": 1608586386.6307995, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -21541,8 +21601,8 @@ "{ 'test': 'test' }", "" ], - "asctime": "2020-01-29 07:23:24,437", - "created": 1580279004.4376235, + "asctime": "2020-12-21 22:33:06,630", + "created": 1608586386.6304219, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -21552,15 +21612,15 @@ "lineno": 22, "message": "Result (Request Data transfered via pure_json_protocol): { 'test': 'test' } ()", "module": "test", - "msecs": 437.6235008239746, + "msecs": 630.4218769073486, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 5513.673305511475, + "relativeCreated": 5542.728900909424, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -21569,8 +21629,8 @@ "{ 'test': 'test' }", "" ], - "asctime": "2020-01-29 07:23:24,437", - "created": 1580279004.4377015, + "asctime": "2020-12-21 22:33:06,630", + "created": 1608586386.6306047, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -21580,37 +21640,37 @@ "lineno": 26, "message": "Expectation (Request Data transfered via pure_json_protocol): result = { 'test': 'test' } ()", "module": "test", - "msecs": 437.7014636993408, + "msecs": 630.6047439575195, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 5513.751268386841, + "relativeCreated": 5542.911767959595, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" } ], - "msecs": 437.7901554107666, + "msecs": 630.7995319366455, "msg": "Request Data transfered via pure_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 5513.839960098267, + "relativeCreated": 5543.106555938721, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread", - "time_consumption": 8.869171142578125e-05 + "time_consumption": 0.00019478797912597656 }, { "args": [ "5", "" ], - "asctime": "2020-01-29 07:23:24,438", - "created": 1580279004.4380302, + "asctime": "2020-12-21 22:33:06,631", + "created": 1608586386.6313274, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -21627,8 +21687,8 @@ "5", "" ], - "asctime": "2020-01-29 07:23:24,437", - "created": 1580279004.437894, + "asctime": "2020-12-21 22:33:06,631", + "created": 1608586386.6310484, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -21638,15 +21698,15 @@ "lineno": 22, "message": "Result (Response Status (Operation not permitted) transfered via pure_json_protocol): 5 ()", "module": "test", - "msecs": 437.8941059112549, + "msecs": 631.0484409332275, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 5513.943910598755, + "relativeCreated": 5543.355464935303, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -21655,8 +21715,8 @@ "5", "" ], - "asctime": "2020-01-29 07:23:24,437", - "created": 1580279004.4379628, + "asctime": "2020-12-21 22:33:06,631", + "created": 1608586386.6311915, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -21666,37 +21726,37 @@ "lineno": 26, "message": "Expectation (Response Status (Operation not permitted) transfered via pure_json_protocol): result = 5 ()", "module": "test", - "msecs": 437.96277046203613, + "msecs": 631.1914920806885, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 5514.012575149536, + "relativeCreated": 5543.498516082764, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" } ], - "msecs": 438.0302429199219, + "msecs": 631.3273906707764, "msg": "Response Status (Operation not permitted) transfered via pure_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 5514.080047607422, + "relativeCreated": 5543.634414672852, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread", - "time_consumption": 6.747245788574219e-05 + "time_consumption": 0.00013589859008789062 }, { "args": [ "[1, 3, 's']", "" ], - "asctime": "2020-01-29 07:23:24,438", - "created": 1580279004.4383187, + "asctime": "2020-12-21 22:33:06,631", + "created": 1608586386.6319032, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -21713,8 +21773,8 @@ "[ 1, 3, 's' ]", "" ], - "asctime": "2020-01-29 07:23:24,438", - "created": 1580279004.4381444, + "asctime": "2020-12-21 22:33:06,631", + "created": 1608586386.6315615, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -21724,15 +21784,15 @@ "lineno": 22, "message": "Result (Response Data transfered via pure_json_protocol): [ 1, 3, 's' ] ()", "module": "test", - "msecs": 438.1444454193115, + "msecs": 631.5615177154541, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 5514.1942501068115, + "relativeCreated": 5543.868541717529, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -21741,8 +21801,8 @@ "[ 1, 3, 's' ]", "" ], - "asctime": "2020-01-29 07:23:24,438", - "created": 1580279004.438221, + "asctime": "2020-12-21 22:33:06,631", + "created": 1608586386.631713, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -21752,37 +21812,37 @@ "lineno": 26, "message": "Expectation (Response Data transfered via pure_json_protocol): result = [ 1, 3, 's' ] ()", "module": "test", - "msecs": 438.2209777832031, + "msecs": 631.7129135131836, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 5514.270782470703, + "relativeCreated": 5544.019937515259, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" } ], - "msecs": 438.31872940063477, + "msecs": 631.9031715393066, "msg": "Response Data transfered via pure_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 5514.368534088135, + "relativeCreated": 5544.210195541382, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread", - "time_consumption": 9.775161743164062e-05 + "time_consumption": 0.00019025802612304688 }, { "args": [ "None", "" ], - "asctime": "2020-01-29 07:23:24,538", - "created": 1580279004.5389214, + "asctime": "2020-12-21 22:33:06,733", + "created": 1608586386.7331822, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -21800,26 +21860,26 @@ "11", "45054" ], - "asctime": "2020-01-29 07:23:24,538", - "created": 1580279004.5386097, + "asctime": "2020-12-21 22:33:06,732", + "created": 1608586386.7324667, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 309, + "lineno": 327, "message": "SJP: TIMEOUT (0.1s): Requested data (service_id: 11; data_id: 45054) not in buffer.", "module": "__init__", - "msecs": 538.6097431182861, + "msecs": 732.4666976928711, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 5614.659547805786, + "relativeCreated": 5644.773721694946, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -21828,8 +21888,8 @@ "None", "" ], - "asctime": "2020-01-29 07:23:24,538", - "created": 1580279004.5387464, + "asctime": "2020-12-21 22:33:06,732", + "created": 1608586386.7328193, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -21839,15 +21899,15 @@ "lineno": 22, "message": "Result (Return Value (request instance) for pure_json_protocol.receive with data data_id 0xaffe): None ()", "module": "test", - "msecs": 538.7463569641113, + "msecs": 732.8193187713623, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 5614.796161651611, + "relativeCreated": 5645.1263427734375, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -21856,8 +21916,8 @@ "None", "" ], - "asctime": "2020-01-29 07:23:24,538", - "created": 1580279004.5388377, + "asctime": "2020-12-21 22:33:06,733", + "created": 1608586386.7330184, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -21867,37 +21927,37 @@ "lineno": 26, "message": "Expectation (Return Value (request instance) for pure_json_protocol.receive with data data_id 0xaffe): result = None ()", "module": "test", - "msecs": 538.8376712799072, + "msecs": 733.0183982849121, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 5614.887475967407, + "relativeCreated": 5645.325422286987, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" } ], - "msecs": 538.9213562011719, + "msecs": 733.1821918487549, "msg": "Return Value (request instance) for pure_json_protocol.receive with data data_id 0xaffe is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 5614.971160888672, + "relativeCreated": 5645.48921585083, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread", - "time_consumption": 8.368492126464844e-05 + "time_consumption": 0.00016379356384277344 }, { "args": [ "None", "" ], - "asctime": "2020-01-29 07:23:24,639", - "created": 1580279004.6397738, + "asctime": "2020-12-21 22:33:06,834", + "created": 1608586386.8345695, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -21915,26 +21975,26 @@ "10", "45054" ], - "asctime": "2020-01-29 07:23:24,639", - "created": 1580279004.6392665, + "asctime": "2020-12-21 22:33:06,833", + "created": 1608586386.833808, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 309, + "lineno": 327, "message": "SJP: TIMEOUT (0.1s): Requested data (service_id: 10; data_id: 45054) not in buffer.", "module": "__init__", - "msecs": 639.2664909362793, + "msecs": 833.8079452514648, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 5715.316295623779, + "relativeCreated": 5746.11496925354, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -21943,8 +22003,8 @@ "None", "" ], - "asctime": "2020-01-29 07:23:24,639", - "created": 1580279004.639491, + "asctime": "2020-12-21 22:33:06,834", + "created": 1608586386.8342144, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -21954,15 +22014,15 @@ "lineno": 22, "message": "Result (Return Value (response instance) for pure_json_protocol.receive with data data_id 0xaffe): None ()", "module": "test", - "msecs": 639.491081237793, + "msecs": 834.214448928833, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 5715.540885925293, + "relativeCreated": 5746.521472930908, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -21971,8 +22031,8 @@ "None", "" ], - "asctime": "2020-01-29 07:23:24,639", - "created": 1580279004.6396427, + "asctime": "2020-12-21 22:33:06,834", + "created": 1608586386.8344092, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -21982,41 +22042,41 @@ "lineno": 26, "message": "Expectation (Return Value (response instance) for pure_json_protocol.receive with data data_id 0xaffe): result = None ()", "module": "test", - "msecs": 639.6427154541016, + "msecs": 834.409236907959, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 5715.692520141602, + "relativeCreated": 5746.716260910034, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" } ], - "msecs": 639.7738456726074, + "msecs": 834.5694541931152, "msg": "Return Value (response instance) for pure_json_protocol.receive with data data_id 0xaffe is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 5715.823650360107, + "relativeCreated": 5746.87647819519, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread", - "time_consumption": 0.00013113021850585938 + "time_consumption": 0.00016021728515625 } ], - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread", - "time_consumption": 0.7051093578338623, - "time_finished": "2020-01-29 07:23:24,639", - "time_start": "2020-01-29 07:23:23,934" + "time_consumption": 0.7096507549285889, + "time_finished": "2020-12-21 22:33:06,834", + "time_start": "2020-12-21 22:33:06,124" }, "socket_protocol.pure_json_protocol: Send and receive check including authentification.": { "args": null, - "asctime": "2020-01-29 07:23:20,400", - "created": 1580279000.4006617, + "asctime": "2020-12-21 22:33:02,581", + "created": 1608586382.581725, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -22027,19 +22087,19 @@ "message": "socket_protocol.pure_json_protocol: Send and receive check including authentification.", "module": "__init__", "moduleLogger": [], - "msecs": 400.6617069244385, + "msecs": 581.7248821258545, "msg": "socket_protocol.pure_json_protocol: Send and receive check including authentification.", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 1476.7115116119385, + "relativeCreated": 1494.0319061279297, "stack_info": null, "testcaseLogger": [ { "args": [], - "asctime": "2020-01-29 07:23:21,605", - "created": 1580279001.6058307, + "asctime": "2020-12-21 22:33:03,788", + "created": 1608586383.7884717, "exc_info": null, "exc_text": null, "filename": "test_normal_operation.py", @@ -22054,130 +22114,130 @@ "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:20,400", - "created": 1580279000.4009202, + "asctime": "2020-12-21 22:33:02,582", + "created": 1608586382.5821419, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 295, + "lineno": 313, "message": "SJP: Cleaning up receive-buffer", "module": "__init__", - "msecs": 400.92015266418457, + "msecs": 582.1418762207031, "msg": "%s Cleaning up receive-buffer", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 1476.9699573516846, + "relativeCreated": 1494.4489002227783, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:20,401", - "created": 1580279000.4012308, + "asctime": "2020-12-21 22:33:02,582", + "created": 1608586382.5825207, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 199, + "lineno": 217, "message": "SJP: Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "module": "__init__", - "msecs": 401.2308120727539, + "msecs": 582.5207233428955, "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 1477.280616760254, + "relativeCreated": 1494.8277473449707, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:20,401", - "created": 1580279000.4014308, + "asctime": "2020-12-21 22:33:02,582", + "created": 1608586382.5827515, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 295, + "lineno": 313, "message": "SJP: Cleaning up receive-buffer", "module": "__init__", - "msecs": 401.4308452606201, + "msecs": 582.7515125274658, "msg": "%s Cleaning up receive-buffer", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 1477.4806499481201, + "relativeCreated": 1495.058536529541, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:20,401", - "created": 1580279000.401699, + "asctime": "2020-12-21 22:33:02,583", + "created": 1608586382.5830345, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 199, + "lineno": 217, "message": "SJP: Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "module": "__init__", - "msecs": 401.6990661621094, + "msecs": 583.0345153808594, "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 1477.7488708496094, + "relativeCreated": 1495.3415393829346, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:20,401", - "created": 1580279000.40196, + "asctime": "2020-12-21 22:33:02,583", + "created": 1608586382.5832896, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "authentificate", "levelname": "INFO", "levelno": 20, - "lineno": 378, + "lineno": 396, "message": "SJP: Requesting seed for authentification", "module": "__init__", - "msecs": 401.9598960876465, + "msecs": 583.289623260498, "msg": "%s Requesting seed for authentification", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 1478.0097007751465, + "relativeCreated": 1495.5966472625732, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -22188,32 +22248,32 @@ 0, "None" ], - "asctime": "2020-01-29 07:23:20,402", - "created": 1580279000.4021559, + "asctime": "2020-12-21 22:33:02,583", + "created": 1608586382.583409, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 334, + "lineno": 352, "message": "SJP: TX -> status: 0, service_id: 1, data_id: 0, data: \"None\"", "module": "__init__", - "msecs": 402.15587615966797, + "msecs": 583.4090709686279, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 1478.205680847168, + "relativeCreated": 1495.7160949707031, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-01-29 07:23:20,402", - "created": 1580279000.4025624, + "asctime": "2020-12-21 22:33:02,583", + "created": 1608586382.5836997, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -22223,21 +22283,21 @@ "lineno": 55, "message": "Send data: (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 9e 85 7b 8d", "module": "test_helpers", - "msecs": 402.56237983703613, + "msecs": 583.6997032165527, "msg": "Send data: (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 9e 85 7b 8d", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 1478.6121845245361, + "relativeCreated": 1496.006727218628, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-01-29 07:23:20,553", - "created": 1580279000.5533257, + "asctime": "2020-12-21 22:33:02,734", + "created": 1608586382.7344763, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -22247,15 +22307,15 @@ "lineno": 66, "message": "Receive data (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 9e 85 7b 8d", "module": "test_helpers", - "msecs": 553.3256530761719, + "msecs": 734.4763278961182, "msg": "Receive data (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 9e 85 7b 8d", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 1629.3754577636719, + "relativeCreated": 1646.7833518981934, "stack_info": null, - "thread": 139631579064064, + "thread": 139622161319680, "threadName": "Thread-5" }, { @@ -22266,26 +22326,26 @@ "0", "None" ], - "asctime": "2020-01-29 07:23:20,553", - "created": 1580279000.5536427, + "asctime": "2020-12-21 22:33:02,734", + "created": 1608586382.7348855, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 247, + "lineno": 259, "message": "SJP: RX <- status: 0, service_id: 1, data_id: 0, data: \"None\"", "module": "__init__", - "msecs": 553.642749786377, + "msecs": 734.8854541778564, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 1629.692554473877, + "relativeCreated": 1647.1924781799316, "stack_info": null, - "thread": 139631579064064, + "thread": 139622161319680, "threadName": "Thread-5" }, { @@ -22293,52 +22353,52 @@ "SJP:", "__authentificate_create_seed__" ], - "asctime": "2020-01-29 07:23:20,553", - "created": 1580279000.553728, + "asctime": "2020-12-21 22:33:02,735", + "created": 1608586382.7350998, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 264, + "lineno": 282, "message": "SJP: Executing callback __authentificate_create_seed__ to process received data", "module": "__init__", - "msecs": 553.7281036376953, + "msecs": 735.0997924804688, "msg": "%s Executing callback %s to process received data", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 1629.7779083251953, + "relativeCreated": 1647.406816482544, "stack_info": null, - "thread": 139631579064064, + "thread": 139622161319680, "threadName": "Thread-5" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:20,553", - "created": 1580279000.553785, + "asctime": "2020-12-21 22:33:02,735", + "created": 1608586382.7352483, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentificate_create_seed__", "levelname": "INFO", "levelno": 20, - "lineno": 404, + "lineno": 422, "message": "SJP: Got seed request, sending seed for authentification", "module": "__init__", - "msecs": 553.7850856781006, + "msecs": 735.248327255249, "msg": "%s Got seed request, sending seed for authentification", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 1629.8348903656006, + "relativeCreated": 1647.5553512573242, "stack_info": null, - "thread": 139631579064064, + "thread": 139622161319680, "threadName": "Thread-5" }, { @@ -22347,34 +22407,34 @@ 0, 2, 0, - "'ea1821be346b5df1cfdbfa5e7d6fe641161aafaf5ca1290b63691e712e74035b'" + "'efa0dc1516add005e12d4fbebaac0403d96f6e1bb4582d5391a272cf9169bd32'" ], - "asctime": "2020-01-29 07:23:20,553", - "created": 1580279000.5538678, + "asctime": "2020-12-21 22:33:02,735", + "created": 1608586382.7354476, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 334, - "message": "SJP: TX -> status: 0, service_id: 2, data_id: 0, data: \"'ea1821be346b5df1cfdbfa5e7d6fe641161aafaf5ca1290b63691e712e74035b'\"", + "lineno": 352, + "message": "SJP: TX -> status: 0, service_id: 2, data_id: 0, data: \"'efa0dc1516add005e12d4fbebaac0403d96f6e1bb4582d5391a272cf9169bd32'\"", "module": "__init__", - "msecs": 553.8678169250488, + "msecs": 735.4476451873779, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 1629.9176216125488, + "relativeCreated": 1647.7546691894531, "stack_info": null, - "thread": 139631579064064, + "thread": 139622161319680, "threadName": "Thread-5" }, { "args": [], - "asctime": "2020-01-29 07:23:20,554", - "created": 1580279000.554076, + "asctime": "2020-12-21 22:33:02,735", + "created": 1608586382.7359247, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -22382,23 +22442,23 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 55, - "message": "Send data: (124): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 32 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 65 61 31 38 32 31 62 65 33 34 36 62 35 64 66 31 63 66 64 62 66 61 35 65 37 64 36 66 65 36 34 31 31 36 31 61 61 66 61 66 35 63 61 31 32 39 30 62 36 33 36 39 31 65 37 31 32 65 37 34 30 33 35 62 22 7d 29 51 80 d2", + "message": "Send data: (124): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 32 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 65 66 61 30 64 63 31 35 31 36 61 64 64 30 30 35 65 31 32 64 34 66 62 65 62 61 61 63 30 34 30 33 64 39 36 66 36 65 31 62 62 34 35 38 32 64 35 33 39 31 61 32 37 32 63 66 39 31 36 39 62 64 33 32 22 7d df 11 5a 26", "module": "test_helpers", - "msecs": 554.0759563446045, - "msg": "Send data: (124): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 32 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 65 61 31 38 32 31 62 65 33 34 36 62 35 64 66 31 63 66 64 62 66 61 35 65 37 64 36 66 65 36 34 31 31 36 31 61 61 66 61 66 35 63 61 31 32 39 30 62 36 33 36 39 31 65 37 31 32 65 37 34 30 33 35 62 22 7d 29 51 80 d2", + "msecs": 735.9247207641602, + "msg": "Send data: (124): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 32 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 65 66 61 30 64 63 31 35 31 36 61 64 64 30 30 35 65 31 32 64 34 66 62 65 62 61 61 63 30 34 30 33 64 39 36 66 36 65 31 62 62 34 35 38 32 64 35 33 39 31 61 32 37 32 63 66 39 31 36 39 62 64 33 32 22 7d df 11 5a 26", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 1630.1257610321045, + "relativeCreated": 1648.2317447662354, "stack_info": null, - "thread": 139631579064064, + "thread": 139622161319680, "threadName": "Thread-5" }, { "args": [], - "asctime": "2020-01-29 07:23:20,704", - "created": 1580279000.7047117, + "asctime": "2020-12-21 22:33:02,887", + "created": 1608586382.8870206, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -22406,17 +22466,17 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 66, - "message": "Receive data (124): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 32 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 65 61 31 38 32 31 62 65 33 34 36 62 35 64 66 31 63 66 64 62 66 61 35 65 37 64 36 66 65 36 34 31 31 36 31 61 61 66 61 66 35 63 61 31 32 39 30 62 36 33 36 39 31 65 37 31 32 65 37 34 30 33 35 62 22 7d 29 51 80 d2", + "message": "Receive data (124): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 32 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 65 66 61 30 64 63 31 35 31 36 61 64 64 30 30 35 65 31 32 64 34 66 62 65 62 61 61 63 30 34 30 33 64 39 36 66 36 65 31 62 62 34 35 38 32 64 35 33 39 31 61 32 37 32 63 66 39 31 36 39 62 64 33 32 22 7d df 11 5a 26", "module": "test_helpers", - "msecs": 704.7116756439209, - "msg": "Receive data (124): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 32 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 65 61 31 38 32 31 62 65 33 34 36 62 35 64 66 31 63 66 64 62 66 61 35 65 37 64 36 66 65 36 34 31 31 36 31 61 61 66 61 66 35 63 61 31 32 39 30 62 36 33 36 39 31 65 37 31 32 65 37 34 30 33 35 62 22 7d 29 51 80 d2", + "msecs": 887.0205879211426, + "msg": "Receive data (124): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 32 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 65 66 61 30 64 63 31 35 31 36 61 64 64 30 30 35 65 31 32 64 34 66 62 65 62 61 61 63 30 34 30 33 64 39 36 66 36 65 31 62 62 34 35 38 32 64 35 33 39 31 61 32 37 32 63 66 39 31 36 39 62 64 33 32 22 7d df 11 5a 26", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 1780.761480331421, + "relativeCreated": 1799.3276119232178, "stack_info": null, - "thread": 139631570671360, + "thread": 139622152926976, "threadName": "Thread-6" }, { @@ -22425,28 +22485,28 @@ "0", "2", "0", - "'ea1821be346b5df1cfdbfa5e7d6fe641161aafaf5ca1290b63691e712e74035b'" + "'efa0dc1516add005e12d4fbebaac0403d96f6e1bb4582d5391a272cf9169bd32'" ], - "asctime": "2020-01-29 07:23:20,705", - "created": 1580279000.705022, + "asctime": "2020-12-21 22:33:02,887", + "created": 1608586382.887456, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 247, - "message": "SJP: RX <- status: 0, service_id: 2, data_id: 0, data: \"'ea1821be346b5df1cfdbfa5e7d6fe641161aafaf5ca1290b63691e712e74035b'\"", + "lineno": 259, + "message": "SJP: RX <- status: 0, service_id: 2, data_id: 0, data: \"'efa0dc1516add005e12d4fbebaac0403d96f6e1bb4582d5391a272cf9169bd32'\"", "module": "__init__", - "msecs": 705.0220966339111, + "msecs": 887.455940246582, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 1781.0719013214111, + "relativeCreated": 1799.7629642486572, "stack_info": null, - "thread": 139631570671360, + "thread": 139622152926976, "threadName": "Thread-6" }, { @@ -22454,52 +22514,52 @@ "SJP:", "__authentificate_create_key__" ], - "asctime": "2020-01-29 07:23:20,705", - "created": 1580279000.705205, + "asctime": "2020-12-21 22:33:02,887", + "created": 1608586382.8876793, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 264, + "lineno": 282, "message": "SJP: Executing callback __authentificate_create_key__ to process received data", "module": "__init__", - "msecs": 705.204963684082, + "msecs": 887.6793384552002, "msg": "%s Executing callback %s to process received data", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 1781.254768371582, + "relativeCreated": 1799.9863624572754, "stack_info": null, - "thread": 139631570671360, + "thread": 139622152926976, "threadName": "Thread-6" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:20,705", - "created": 1580279000.7053778, + "asctime": "2020-12-21 22:33:02,887", + "created": 1608586382.8878312, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentificate_create_key__", "levelname": "INFO", "levelno": 20, - "lineno": 413, + "lineno": 431, "message": "SJP: Got seed, sending key for authentification", "module": "__init__", - "msecs": 705.3778171539307, + "msecs": 887.8312110900879, "msg": "%s Got seed, sending key for authentification", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 1781.4276218414307, + "relativeCreated": 1800.138235092163, "stack_info": null, - "thread": 139631570671360, + "thread": 139622152926976, "threadName": "Thread-6" }, { @@ -22508,34 +22568,34 @@ 0, 3, 0, - "'fc81968a3390058acabf0fc03e0da12b20f2d0371bf5f84499ef9c592ab00a81131b51f9f78c75fa48a367c289ca9fd15239369ae2fdd76290cf22b17fe3f2f0'" + "'8236f10c89bff4f28f00db77091cbc81edaeaf6de1716ce477602e97840605d19f5e67cbfd3378d2cf916351fc6f1eac1ff473f6b025a908522a20965e8965b6'" ], - "asctime": "2020-01-29 07:23:20,705", - "created": 1580279000.7055984, + "asctime": "2020-12-21 22:33:02,888", + "created": 1608586382.8880537, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 334, - "message": "SJP: TX -> status: 0, service_id: 3, data_id: 0, data: \"'fc81968a3390058acabf0fc03e0da12b20f2d0371bf5f84499ef9c592ab00a81131b51f9f78c75fa48a367c289ca9fd15239369ae2fdd76290cf22b17fe3f2f0'\"", + "lineno": 352, + "message": "SJP: TX -> status: 0, service_id: 3, data_id: 0, data: \"'8236f10c89bff4f28f00db77091cbc81edaeaf6de1716ce477602e97840605d19f5e67cbfd3378d2cf916351fc6f1eac1ff473f6b025a908522a20965e8965b6'\"", "module": "__init__", - "msecs": 705.5983543395996, + "msecs": 888.0536556243896, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 1781.6481590270996, + "relativeCreated": 1800.3606796264648, "stack_info": null, - "thread": 139631570671360, + "thread": 139622152926976, "threadName": "Thread-6" }, { "args": [], - "asctime": "2020-01-29 07:23:20,706", - "created": 1580279000.7060926, + "asctime": "2020-12-21 22:33:02,888", + "created": 1608586382.8886065, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -22543,23 +22603,23 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 55, - "message": "Send data: (188): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 33 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 66 63 38 31 39 36 38 61 33 33 39 30 30 35 38 61 63 61 62 66 30 66 63 30 33 65 30 64 61 31 32 62 32 30 66 32 64 30 33 37 31 62 66 35 66 38 34 34 39 39 65 66 39 63 35 39 32 61 62 30 30 61 38 31 31 33 31 62 35 31 66 39 66 37 38 63 37 35 66 61 34 38 61 33 36 37 63 32 38 39 63 61 39 66 64 31 35 32 33 39 33 36 39 61 65 32 66 64 64 37 36 32 39 30 63 66 32 32 62 31 37 66 65 33 66 32 66 30 22 7d 18 00 f1 87", + "message": "Send data: (188): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 33 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 38 32 33 36 66 31 30 63 38 39 62 66 66 34 66 32 38 66 30 30 64 62 37 37 30 39 31 63 62 63 38 31 65 64 61 65 61 66 36 64 65 31 37 31 36 63 65 34 37 37 36 30 32 65 39 37 38 34 30 36 30 35 64 31 39 66 35 65 36 37 63 62 66 64 33 33 37 38 64 32 63 66 39 31 36 33 35 31 66 63 36 66 31 65 61 63 31 66 66 34 37 33 66 36 62 30 32 35 61 39 30 38 35 32 32 61 32 30 39 36 35 65 38 39 36 35 62 36 22 7d a8 8f 70 81", "module": "test_helpers", - "msecs": 706.0925960540771, - "msg": "Send data: (188): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 33 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 66 63 38 31 39 36 38 61 33 33 39 30 30 35 38 61 63 61 62 66 30 66 63 30 33 65 30 64 61 31 32 62 32 30 66 32 64 30 33 37 31 62 66 35 66 38 34 34 39 39 65 66 39 63 35 39 32 61 62 30 30 61 38 31 31 33 31 62 35 31 66 39 66 37 38 63 37 35 66 61 34 38 61 33 36 37 63 32 38 39 63 61 39 66 64 31 35 32 33 39 33 36 39 61 65 32 66 64 64 37 36 32 39 30 63 66 32 32 62 31 37 66 65 33 66 32 66 30 22 7d 18 00 f1 87", + "msecs": 888.6065483093262, + "msg": "Send data: (188): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 33 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 38 32 33 36 66 31 30 63 38 39 62 66 66 34 66 32 38 66 30 30 64 62 37 37 30 39 31 63 62 63 38 31 65 64 61 65 61 66 36 64 65 31 37 31 36 63 65 34 37 37 36 30 32 65 39 37 38 34 30 36 30 35 64 31 39 66 35 65 36 37 63 62 66 64 33 33 37 38 64 32 63 66 39 31 36 33 35 31 66 63 36 66 31 65 61 63 31 66 66 34 37 33 66 36 62 30 32 35 61 39 30 38 35 32 32 61 32 30 39 36 35 65 38 39 36 35 62 36 22 7d a8 8f 70 81", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 1782.1424007415771, + "relativeCreated": 1800.9135723114014, "stack_info": null, - "thread": 139631570671360, + "thread": 139622152926976, "threadName": "Thread-6" }, { "args": [], - "asctime": "2020-01-29 07:23:20,857", - "created": 1580279000.857115, + "asctime": "2020-12-21 22:33:03,040", + "created": 1608586383.0400386, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -22567,17 +22627,17 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 66, - "message": "Receive data (188): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 33 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 66 63 38 31 39 36 38 61 33 33 39 30 30 35 38 61 63 61 62 66 30 66 63 30 33 65 30 64 61 31 32 62 32 30 66 32 64 30 33 37 31 62 66 35 66 38 34 34 39 39 65 66 39 63 35 39 32 61 62 30 30 61 38 31 31 33 31 62 35 31 66 39 66 37 38 63 37 35 66 61 34 38 61 33 36 37 63 32 38 39 63 61 39 66 64 31 35 32 33 39 33 36 39 61 65 32 66 64 64 37 36 32 39 30 63 66 32 32 62 31 37 66 65 33 66 32 66 30 22 7d 18 00 f1 87", + "message": "Receive data (188): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 33 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 38 32 33 36 66 31 30 63 38 39 62 66 66 34 66 32 38 66 30 30 64 62 37 37 30 39 31 63 62 63 38 31 65 64 61 65 61 66 36 64 65 31 37 31 36 63 65 34 37 37 36 30 32 65 39 37 38 34 30 36 30 35 64 31 39 66 35 65 36 37 63 62 66 64 33 33 37 38 64 32 63 66 39 31 36 33 35 31 66 63 36 66 31 65 61 63 31 66 66 34 37 33 66 36 62 30 32 35 61 39 30 38 35 32 32 61 32 30 39 36 35 65 38 39 36 35 62 36 22 7d a8 8f 70 81", "module": "test_helpers", - "msecs": 857.1150302886963, - "msg": "Receive data (188): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 33 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 66 63 38 31 39 36 38 61 33 33 39 30 30 35 38 61 63 61 62 66 30 66 63 30 33 65 30 64 61 31 32 62 32 30 66 32 64 30 33 37 31 62 66 35 66 38 34 34 39 39 65 66 39 63 35 39 32 61 62 30 30 61 38 31 31 33 31 62 35 31 66 39 66 37 38 63 37 35 66 61 34 38 61 33 36 37 63 32 38 39 63 61 39 66 64 31 35 32 33 39 33 36 39 61 65 32 66 64 64 37 36 32 39 30 63 66 32 32 62 31 37 66 65 33 66 32 66 30 22 7d 18 00 f1 87", + "msecs": 40.0385856628418, + "msg": "Receive data (188): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 33 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 22 38 32 33 36 66 31 30 63 38 39 62 66 66 34 66 32 38 66 30 30 64 62 37 37 30 39 31 63 62 63 38 31 65 64 61 65 61 66 36 64 65 31 37 31 36 63 65 34 37 37 36 30 32 65 39 37 38 34 30 36 30 35 64 31 39 66 35 65 36 37 63 62 66 64 33 33 37 38 64 32 63 66 39 31 36 33 35 31 66 63 36 66 31 65 61 63 31 66 66 34 37 33 66 36 62 30 32 35 61 39 30 38 35 32 32 61 32 30 39 36 35 65 38 39 36 35 62 36 22 7d a8 8f 70 81", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 1933.1648349761963, + "relativeCreated": 1952.345609664917, "stack_info": null, - "thread": 139631579064064, + "thread": 139622161319680, "threadName": "Thread-7" }, { @@ -22586,28 +22646,28 @@ "0", "3", "0", - "'fc81968a3390058acabf0fc03e0da12b20f2d0371bf5f84499ef9c592ab00a81131b51f9f78c75fa48a367c289ca9fd15239369ae2fdd76290cf22b17fe3f2f0'" + "'8236f10c89bff4f28f00db77091cbc81edaeaf6de1716ce477602e97840605d19f5e67cbfd3378d2cf916351fc6f1eac1ff473f6b025a908522a20965e8965b6'" ], - "asctime": "2020-01-29 07:23:20,857", - "created": 1580279000.8575213, + "asctime": "2020-12-21 22:33:03,040", + "created": 1608586383.0406315, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 247, - "message": "SJP: RX <- status: 0, service_id: 3, data_id: 0, data: \"'fc81968a3390058acabf0fc03e0da12b20f2d0371bf5f84499ef9c592ab00a81131b51f9f78c75fa48a367c289ca9fd15239369ae2fdd76290cf22b17fe3f2f0'\"", + "lineno": 259, + "message": "SJP: RX <- status: 0, service_id: 3, data_id: 0, data: \"'8236f10c89bff4f28f00db77091cbc81edaeaf6de1716ce477602e97840605d19f5e67cbfd3378d2cf916351fc6f1eac1ff473f6b025a908522a20965e8965b6'\"", "module": "__init__", - "msecs": 857.5212955474854, + "msecs": 40.63153266906738, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 1933.5711002349854, + "relativeCreated": 1952.9385566711426, "stack_info": null, - "thread": 139631579064064, + "thread": 139622161319680, "threadName": "Thread-7" }, { @@ -22615,52 +22675,52 @@ "SJP:", "__authentificate_check_key__" ], - "asctime": "2020-01-29 07:23:20,857", - "created": 1580279000.857729, + "asctime": "2020-12-21 22:33:03,040", + "created": 1608586383.0409331, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 264, + "lineno": 282, "message": "SJP: Executing callback __authentificate_check_key__ to process received data", "module": "__init__", - "msecs": 857.7289581298828, + "msecs": 40.93313217163086, "msg": "%s Executing callback %s to process received data", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 1933.7787628173828, + "relativeCreated": 1953.240156173706, "stack_info": null, - "thread": 139631579064064, + "thread": 139622161319680, "threadName": "Thread-7" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:20,857", - "created": 1580279000.857907, + "asctime": "2020-12-21 22:33:03,041", + "created": 1608586383.0411491, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentificate_check_key__", "levelname": "INFO", "levelno": 20, - "lineno": 423, + "lineno": 441, "message": "SJP: Got correct key, sending positive authentification feedback", "module": "__init__", - "msecs": 857.9070568084717, + "msecs": 41.149139404296875, "msg": "%s Got correct key, sending positive authentification feedback", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 1933.9568614959717, + "relativeCreated": 1953.456163406372, "stack_info": null, - "thread": 139631579064064, + "thread": 139622161319680, "threadName": "Thread-7" }, { @@ -22671,32 +22731,32 @@ 0, "True" ], - "asctime": "2020-01-29 07:23:20,858", - "created": 1580279000.8581016, + "asctime": "2020-12-21 22:33:03,041", + "created": 1608586383.0413249, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 334, + "lineno": 352, "message": "SJP: TX -> status: 0, service_id: 4, data_id: 0, data: \"True\"", "module": "__init__", - "msecs": 858.1016063690186, + "msecs": 41.32485389709473, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 1934.1514110565186, + "relativeCreated": 1953.63187789917, "stack_info": null, - "thread": 139631579064064, + "thread": 139622161319680, "threadName": "Thread-7" }, { "args": [], - "asctime": "2020-01-29 07:23:20,858", - "created": 1580279000.8584158, + "asctime": "2020-12-21 22:33:03,041", + "created": 1608586383.0417163, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -22706,21 +22766,21 @@ "lineno": 55, "message": "Send data: (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 34 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 74 72 75 65 7d df 5e 54 54", "module": "test_helpers", - "msecs": 858.4158420562744, + "msecs": 41.71633720397949, "msg": "Send data: (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 34 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 74 72 75 65 7d df 5e 54 54", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 1934.4656467437744, + "relativeCreated": 1954.0233612060547, "stack_info": null, - "thread": 139631579064064, + "thread": 139622161319680, "threadName": "Thread-7" }, { "args": [], - "asctime": "2020-01-29 07:23:21,009", - "created": 1580279001.0097532, + "asctime": "2020-12-21 22:33:03,192", + "created": 1608586383.1927798, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -22730,15 +22790,15 @@ "lineno": 66, "message": "Receive data (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 34 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 74 72 75 65 7d df 5e 54 54", "module": "test_helpers", - "msecs": 9.753227233886719, + "msecs": 192.7797794342041, "msg": "Receive data (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 34 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 74 72 75 65 7d df 5e 54 54", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 2085.8030319213867, + "relativeCreated": 2105.0868034362793, "stack_info": null, - "thread": 139631570671360, + "thread": 139622152926976, "threadName": "Thread-8" }, { @@ -22749,26 +22809,26 @@ "0", "True" ], - "asctime": "2020-01-29 07:23:21,010", - "created": 1580279001.0106983, + "asctime": "2020-12-21 22:33:03,193", + "created": 1608586383.1932278, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 247, + "lineno": 259, "message": "SJP: RX <- status: 0, service_id: 4, data_id: 0, data: \"True\"", "module": "__init__", - "msecs": 10.698318481445312, + "msecs": 193.22776794433594, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 2086.7481231689453, + "relativeCreated": 2105.534791946411, "stack_info": null, - "thread": 139631570671360, + "thread": 139622152926976, "threadName": "Thread-8" }, { @@ -22776,52 +22836,52 @@ "SJP:", "__authentificate_process_feedback__" ], - "asctime": "2020-01-29 07:23:21,011", - "created": 1580279001.011129, + "asctime": "2020-12-21 22:33:03,193", + "created": 1608586383.1934607, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 281, + "lineno": 299, "message": "SJP: Executing callback __authentificate_process_feedback__ to process received data", "module": "__init__", - "msecs": 11.128902435302734, + "msecs": 193.46070289611816, "msg": "%s Executing callback %s to process received data", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 2087.1787071228027, + "relativeCreated": 2105.7677268981934, "stack_info": null, - "thread": 139631570671360, + "thread": 139622152926976, "threadName": "Thread-8" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:21,011", - "created": 1580279001.0113933, + "asctime": "2020-12-21 22:33:03,193", + "created": 1608586383.1936214, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentificate_process_feedback__", "levelname": "INFO", "levelno": 20, - "lineno": 434, + "lineno": 452, "message": "SJP: Got positive authentification feedback", "module": "__init__", - "msecs": 11.393308639526367, + "msecs": 193.62139701843262, "msg": "%s Got positive authentification feedback", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 2087.4431133270264, + "relativeCreated": 2105.928421020508, "stack_info": null, - "thread": 139631570671360, + "thread": 139622152926976, "threadName": "Thread-8" }, { @@ -22832,32 +22892,32 @@ 45054, "{'test': 'test'}" ], - "asctime": "2020-01-29 07:23:21,104", - "created": 1580279001.104454, + "asctime": "2020-12-21 22:33:03,285", + "created": 1608586383.2858305, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 334, + "lineno": 352, "message": "SJP: TX -> status: 0, service_id: 10, data_id: 45054, data: \"{'test': 'test'}\"", "module": "__init__", - "msecs": 104.45404052734375, + "msecs": 285.8304977416992, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 2180.5038452148438, + "relativeCreated": 2198.1375217437744, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-01-29 07:23:21,104", - "created": 1580279001.1046658, + "asctime": "2020-12-21 22:33:03,286", + "created": 1608586383.2863817, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -22867,21 +22927,21 @@ "lineno": 55, "message": "Send data: (79): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 7d 82 1c 8b 89", "module": "test_helpers", - "msecs": 104.66575622558594, + "msecs": 286.38172149658203, "msg": "Send data: (79): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 7d 82 1c 8b 89", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 2180.715560913086, + "relativeCreated": 2198.688745498657, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-01-29 07:23:21,255", - "created": 1580279001.2551332, + "asctime": "2020-12-21 22:33:03,437", + "created": 1608586383.4374583, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -22891,15 +22951,15 @@ "lineno": 66, "message": "Receive data (79): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 7d 82 1c 8b 89", "module": "test_helpers", - "msecs": 255.13315200805664, + "msecs": 437.4582767486572, "msg": "Receive data (79): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 7d 82 1c 8b 89", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 2331.1829566955566, + "relativeCreated": 2349.7653007507324, "stack_info": null, - "thread": 139631570671360, + "thread": 139622152926976, "threadName": "Thread-9" }, { @@ -22910,26 +22970,26 @@ "45054", "{'test': 'test'}" ], - "asctime": "2020-01-29 07:23:21,255", - "created": 1580279001.2553873, + "asctime": "2020-12-21 22:33:03,437", + "created": 1608586383.4378772, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 247, + "lineno": 259, "message": "SJP: RX <- status: 0, service_id: 10, data_id: 45054, data: \"{'test': 'test'}\"", "module": "__init__", - "msecs": 255.3873062133789, + "msecs": 437.8771781921387, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 2331.437110900879, + "relativeCreated": 2350.184202194214, "stack_info": null, - "thread": 139631570671360, + "thread": 139622152926976, "threadName": "Thread-9" }, { @@ -22937,26 +22997,26 @@ "SJP:", "response_data_method" ], - "asctime": "2020-01-29 07:23:21,255", - "created": 1580279001.2555213, + "asctime": "2020-12-21 22:33:03,438", + "created": 1608586383.438089, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 264, + "lineno": 282, "message": "SJP: Executing callback response_data_method to process received data", "module": "__init__", - "msecs": 255.52129745483398, + "msecs": 438.08889389038086, "msg": "%s Executing callback %s to process received data", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 2331.571102142334, + "relativeCreated": 2350.395917892456, "stack_info": null, - "thread": 139631570671360, + "thread": 139622152926976, "threadName": "Thread-9" }, { @@ -22967,32 +23027,32 @@ 45054, "[1, 3, 's']" ], - "asctime": "2020-01-29 07:23:21,255", - "created": 1580279001.2556279, + "asctime": "2020-12-21 22:33:03,438", + "created": 1608586383.4382648, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 334, + "lineno": 352, "message": "SJP: TX -> status: 5, service_id: 11, data_id: 45054, data: \"[1, 3, 's']\"", "module": "__init__", - "msecs": 255.62787055969238, + "msecs": 438.2648468017578, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 2331.6776752471924, + "relativeCreated": 2350.571870803833, "stack_info": null, - "thread": 139631570671360, + "thread": 139622152926976, "threadName": "Thread-9" }, { "args": [], - "asctime": "2020-01-29 07:23:21,255", - "created": 1580279001.2558413, + "asctime": "2020-12-21 22:33:03,438", + "created": 1608586383.4386406, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -23002,21 +23062,21 @@ "lineno": 55, "message": "Send data: (74): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 35 2c 20 22 64 61 74 61 22 3a 20 5b 31 2c 20 33 2c 20 22 73 22 5d 7d 60 f8 dc 89", "module": "test_helpers", - "msecs": 255.84125518798828, + "msecs": 438.6405944824219, "msg": "Send data: (74): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 35 2c 20 22 64 61 74 61 22 3a 20 5b 31 2c 20 33 2c 20 22 73 22 5d 7d 60 f8 dc 89", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 2331.8910598754883, + "relativeCreated": 2350.947618484497, "stack_info": null, - "thread": 139631570671360, + "thread": 139622152926976, "threadName": "Thread-9" }, { "args": [], - "asctime": "2020-01-29 07:23:21,406", - "created": 1580279001.4063704, + "asctime": "2020-12-21 22:33:03,589", + "created": 1608586383.5896819, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -23026,15 +23086,15 @@ "lineno": 66, "message": "Receive data (74): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 35 2c 20 22 64 61 74 61 22 3a 20 5b 31 2c 20 33 2c 20 22 73 22 5d 7d 60 f8 dc 89", "module": "test_helpers", - "msecs": 406.3704013824463, + "msecs": 589.68186378479, "msg": "Receive data (74): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 35 2c 20 22 64 61 74 61 22 3a 20 5b 31 2c 20 33 2c 20 22 73 22 5d 7d 60 f8 dc 89", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 2482.4202060699463, + "relativeCreated": 2501.9888877868652, "stack_info": null, - "thread": 139631579064064, + "thread": 139622161319680, "threadName": "Thread-10" }, { @@ -23045,26 +23105,26 @@ "45054", "[1, 3, 's']" ], - "asctime": "2020-01-29 07:23:21,406", - "created": 1580279001.4065979, + "asctime": "2020-12-21 22:33:03,590", + "created": 1608586383.5901225, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 247, + "lineno": 259, "message": "SJP: RX <- status: 5, service_id: 11, data_id: 45054, data: \"[1, 3, 's']\"", "module": "__init__", - "msecs": 406.5978527069092, + "msecs": 590.1224613189697, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 2482.647657394409, + "relativeCreated": 2502.429485321045, "stack_info": null, - "thread": 139631579064064, + "thread": 139622161319680, "threadName": "Thread-10" }, { @@ -23072,74 +23132,74 @@ "SJP:", "Operation not permitted" ], - "asctime": "2020-01-29 07:23:21,406", - "created": 1580279001.4067202, + "asctime": "2020-12-21 22:33:03,590", + "created": 1608586383.5903919, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "WARNING", "levelno": 30, - "lineno": 274, + "lineno": 292, "message": "SJP: Received message has a peculiar status: Operation not permitted", "module": "__init__", - "msecs": 406.7201614379883, + "msecs": 590.3918743133545, "msg": "%s Received message has a peculiar status: %s", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 2482.7699661254883, + "relativeCreated": 2502.6988983154297, "stack_info": null, - "thread": 139631579064064, + "thread": 139622161319680, "threadName": "Thread-10" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:21,406", - "created": 1580279001.4068148, + "asctime": "2020-12-21 22:33:03,590", + "created": 1608586383.5905788, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 292, + "lineno": 310, "message": "SJP: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 406.8148136138916, + "msecs": 590.5787944793701, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 2482.8646183013916, + "relativeCreated": 2502.8858184814453, "stack_info": null, - "thread": 139631579064064, + "thread": 139622161319680, "threadName": "Thread-10" } ], - "msecs": 605.8306694030762, + "msecs": 788.4716987609863, "msg": "Send and received data by pure_json_protocol.", "name": "__tLogger__", "pathname": "src/tests/test_normal_operation.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 2681.880474090576, + "relativeCreated": 2700.7787227630615, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread", - "time_consumption": 0.19901585578918457 + "time_consumption": 0.1978929042816162 }, { "args": [ "True", "" ], - "asctime": "2020-01-29 07:23:21,606", - "created": 1580279001.606427, + "asctime": "2020-12-21 22:33:03,789", + "created": 1608586383.7893555, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -23156,8 +23216,8 @@ "True", "" ], - "asctime": "2020-01-29 07:23:21,606", - "created": 1580279001.606156, + "asctime": "2020-12-21 22:33:03,788", + "created": 1608586383.7889855, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -23167,15 +23227,15 @@ "lineno": 22, "message": "Result (Return value of authentification): True ()", "module": "test", - "msecs": 606.1561107635498, + "msecs": 788.9854907989502, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 2682.20591545105, + "relativeCreated": 2701.2925148010254, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -23184,8 +23244,8 @@ "True", "" ], - "asctime": "2020-01-29 07:23:21,606", - "created": 1580279001.6062925, + "asctime": "2020-12-21 22:33:03,789", + "created": 1608586383.7891948, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -23195,37 +23255,37 @@ "lineno": 26, "message": "Expectation (Return value of authentification): result = True ()", "module": "test", - "msecs": 606.2924861907959, + "msecs": 789.1948223114014, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 2682.342290878296, + "relativeCreated": 2701.5018463134766, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" } ], - "msecs": 606.4269542694092, + "msecs": 789.3555164337158, "msg": "Return value of authentification is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 2682.476758956909, + "relativeCreated": 2701.662540435791, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread", - "time_consumption": 0.00013446807861328125 + "time_consumption": 0.00016069412231445312 }, { "args": [ "True", "" ], - "asctime": "2020-01-29 07:23:21,606", - "created": 1580279001.6067927, + "asctime": "2020-12-21 22:33:03,789", + "created": 1608586383.78987, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -23242,8 +23302,8 @@ "True", "" ], - "asctime": "2020-01-29 07:23:21,606", - "created": 1580279001.6065845, + "asctime": "2020-12-21 22:33:03,789", + "created": 1608586383.7895854, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -23253,15 +23313,15 @@ "lineno": 22, "message": "Result (Return value of send method): True ()", "module": "test", - "msecs": 606.5845489501953, + "msecs": 789.5853519439697, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 2682.6343536376953, + "relativeCreated": 2701.892375946045, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -23270,8 +23330,8 @@ "True", "" ], - "asctime": "2020-01-29 07:23:21,606", - "created": 1580279001.6066914, + "asctime": "2020-12-21 22:33:03,789", + "created": 1608586383.7897308, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -23281,37 +23341,37 @@ "lineno": 26, "message": "Expectation (Return value of send method): result = True ()", "module": "test", - "msecs": 606.6913604736328, + "msecs": 789.7307872772217, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 2682.741165161133, + "relativeCreated": 2702.037811279297, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" } ], - "msecs": 606.792688369751, + "msecs": 789.870023727417, "msg": "Return value of send method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 2682.842493057251, + "relativeCreated": 2702.177047729492, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread", - "time_consumption": 0.00010132789611816406 + "time_consumption": 0.0001392364501953125 }, { "args": [ "0", "" ], - "asctime": "2020-01-29 07:23:21,607", - "created": 1580279001.6071436, + "asctime": "2020-12-21 22:33:03,790", + "created": 1608586383.7903824, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -23328,8 +23388,8 @@ "0", "" ], - "asctime": "2020-01-29 07:23:21,606", - "created": 1580279001.6069434, + "asctime": "2020-12-21 22:33:03,790", + "created": 1608586383.790086, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -23339,15 +23399,15 @@ "lineno": 22, "message": "Result (Request Status (Okay) transfered via pure_json_protocol): 0 ()", "module": "test", - "msecs": 606.9433689117432, + "msecs": 790.086030960083, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 2682.993173599243, + "relativeCreated": 2702.393054962158, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -23356,8 +23416,8 @@ "0", "" ], - "asctime": "2020-01-29 07:23:21,607", - "created": 1580279001.607045, + "asctime": "2020-12-21 22:33:03,790", + "created": 1608586383.7902443, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -23367,37 +23427,37 @@ "lineno": 26, "message": "Expectation (Request Status (Okay) transfered via pure_json_protocol): result = 0 ()", "module": "test", - "msecs": 607.0449352264404, + "msecs": 790.2443408966064, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 2683.0947399139404, + "relativeCreated": 2702.5513648986816, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" } ], - "msecs": 607.1436405181885, + "msecs": 790.3823852539062, "msg": "Request Status (Okay) transfered via pure_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 2683.1934452056885, + "relativeCreated": 2702.6894092559814, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread", - "time_consumption": 9.870529174804688e-05 + "time_consumption": 0.0001380443572998047 }, { "args": [ "{'test': 'test'}", "" ], - "asctime": "2020-01-29 07:23:21,607", - "created": 1580279001.6075468, + "asctime": "2020-12-21 22:33:03,790", + "created": 1608586383.7909405, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -23414,8 +23474,8 @@ "{ 'test': 'test' }", "" ], - "asctime": "2020-01-29 07:23:21,607", - "created": 1580279001.6073048, + "asctime": "2020-12-21 22:33:03,790", + "created": 1608586383.7906084, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -23425,15 +23485,15 @@ "lineno": 22, "message": "Result (Request Data transfered via pure_json_protocol): { 'test': 'test' } ()", "module": "test", - "msecs": 607.3048114776611, + "msecs": 790.6084060668945, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 2683.354616165161, + "relativeCreated": 2702.9154300689697, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -23442,8 +23502,8 @@ "{ 'test': 'test' }", "" ], - "asctime": "2020-01-29 07:23:21,607", - "created": 1580279001.6074193, + "asctime": "2020-12-21 22:33:03,790", + "created": 1608586383.7907581, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -23453,37 +23513,37 @@ "lineno": 26, "message": "Expectation (Request Data transfered via pure_json_protocol): result = { 'test': 'test' } ()", "module": "test", - "msecs": 607.4192523956299, + "msecs": 790.7581329345703, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 2683.46905708313, + "relativeCreated": 2703.0651569366455, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" } ], - "msecs": 607.5468063354492, + "msecs": 790.940523147583, "msg": "Request Data transfered via pure_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 2683.596611022949, + "relativeCreated": 2703.247547149658, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread", - "time_consumption": 0.00012755393981933594 + "time_consumption": 0.0001823902130126953 }, { "args": [ "5", "" ], - "asctime": "2020-01-29 07:23:21,607", - "created": 1580279001.6078918, + "asctime": "2020-12-21 22:33:03,791", + "created": 1608586383.791434, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -23500,8 +23560,8 @@ "5", "" ], - "asctime": "2020-01-29 07:23:21,607", - "created": 1580279001.6076949, + "asctime": "2020-12-21 22:33:03,791", + "created": 1608586383.791162, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -23511,15 +23571,15 @@ "lineno": 22, "message": "Result (Response Status (Operation not permitted) transfered via pure_json_protocol): 5 ()", "module": "test", - "msecs": 607.6948642730713, + "msecs": 791.1620140075684, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 2683.7446689605713, + "relativeCreated": 2703.4690380096436, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -23528,8 +23588,8 @@ "5", "" ], - "asctime": "2020-01-29 07:23:21,607", - "created": 1580279001.6077926, + "asctime": "2020-12-21 22:33:03,791", + "created": 1608586383.7913003, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -23539,37 +23599,37 @@ "lineno": 26, "message": "Expectation (Response Status (Operation not permitted) transfered via pure_json_protocol): result = 5 ()", "module": "test", - "msecs": 607.7926158905029, + "msecs": 791.3002967834473, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 2683.842420578003, + "relativeCreated": 2703.6073207855225, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" } ], - "msecs": 607.8917980194092, + "msecs": 791.4340496063232, "msg": "Response Status (Operation not permitted) transfered via pure_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 2683.941602706909, + "relativeCreated": 2703.7410736083984, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread", - "time_consumption": 9.918212890625e-05 + "time_consumption": 0.00013375282287597656 }, { "args": [ "[1, 3, 's']", "" ], - "asctime": "2020-01-29 07:23:21,608", - "created": 1580279001.6083024, + "asctime": "2020-12-21 22:33:03,791", + "created": 1608586383.7919958, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -23586,8 +23646,8 @@ "[ 1, 3, 's' ]", "" ], - "asctime": "2020-01-29 07:23:21,608", - "created": 1580279001.608046, + "asctime": "2020-12-21 22:33:03,791", + "created": 1608586383.7916567, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -23597,15 +23657,15 @@ "lineno": 22, "message": "Result (Response Data transfered via pure_json_protocol): [ 1, 3, 's' ] ()", "module": "test", - "msecs": 608.0460548400879, + "msecs": 791.6567325592041, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 2684.095859527588, + "relativeCreated": 2703.9637565612793, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -23614,8 +23674,8 @@ "[ 1, 3, 's' ]", "" ], - "asctime": "2020-01-29 07:23:21,608", - "created": 1580279001.6081543, + "asctime": "2020-12-21 22:33:03,791", + "created": 1608586383.791807, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -23625,37 +23685,37 @@ "lineno": 26, "message": "Expectation (Response Data transfered via pure_json_protocol): result = [ 1, 3, 's' ] ()", "module": "test", - "msecs": 608.154296875, + "msecs": 791.8069362640381, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 2684.2041015625, + "relativeCreated": 2704.1139602661133, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" } ], - "msecs": 608.3023548126221, + "msecs": 791.9957637786865, "msg": "Response Data transfered via pure_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 2684.352159500122, + "relativeCreated": 2704.3027877807617, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread", - "time_consumption": 0.0001480579376220703 + "time_consumption": 0.0001888275146484375 }, { "args": [ "None", "" ], - "asctime": "2020-01-29 07:23:21,709", - "created": 1580279001.709211, + "asctime": "2020-12-21 22:33:03,893", + "created": 1608586383.8933105, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -23673,26 +23733,26 @@ "11", "45054" ], - "asctime": "2020-01-29 07:23:21,708", - "created": 1580279001.7087204, + "asctime": "2020-12-21 22:33:03,892", + "created": 1608586383.8925674, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 309, + "lineno": 327, "message": "SJP: TIMEOUT (0.1s): Requested data (service_id: 11; data_id: 45054) not in buffer.", "module": "__init__", - "msecs": 708.7204456329346, + "msecs": 892.5673961639404, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 2784.7702503204346, + "relativeCreated": 2804.8744201660156, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -23701,8 +23761,8 @@ "None", "" ], - "asctime": "2020-01-29 07:23:21,708", - "created": 1580279001.7089574, + "asctime": "2020-12-21 22:33:03,892", + "created": 1608586383.8929782, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -23712,15 +23772,15 @@ "lineno": 22, "message": "Result (Return Value (request instance) for pure_json_protocol.receive with data data_id 0xaffe): None ()", "module": "test", - "msecs": 708.9574337005615, + "msecs": 892.9781913757324, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 2785.0072383880615, + "relativeCreated": 2805.2852153778076, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -23729,8 +23789,8 @@ "None", "" ], - "asctime": "2020-01-29 07:23:21,709", - "created": 1580279001.7090886, + "asctime": "2020-12-21 22:33:03,893", + "created": 1608586383.8931527, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -23740,37 +23800,37 @@ "lineno": 26, "message": "Expectation (Return Value (request instance) for pure_json_protocol.receive with data data_id 0xaffe): result = None ()", "module": "test", - "msecs": 709.0885639190674, + "msecs": 893.1527137756348, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 2785.1383686065674, + "relativeCreated": 2805.45973777771, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" } ], - "msecs": 709.2111110687256, + "msecs": 893.310546875, "msg": "Return Value (request instance) for pure_json_protocol.receive with data data_id 0xaffe is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 2785.2609157562256, + "relativeCreated": 2805.617570877075, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread", - "time_consumption": 0.00012254714965820312 + "time_consumption": 0.00015783309936523438 }, { "args": [ "None", "" ], - "asctime": "2020-01-29 07:23:21,810", - "created": 1580279001.8101597, + "asctime": "2020-12-21 22:33:03,994", + "created": 1608586383.9945948, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -23788,26 +23848,26 @@ "10", "45054" ], - "asctime": "2020-01-29 07:23:21,809", - "created": 1580279001.8096535, + "asctime": "2020-12-21 22:33:03,993", + "created": 1608586383.9938853, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 309, + "lineno": 327, "message": "SJP: TIMEOUT (0.1s): Requested data (service_id: 10; data_id: 45054) not in buffer.", "module": "__init__", - "msecs": 809.6535205841064, + "msecs": 993.8852787017822, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 2885.7033252716064, + "relativeCreated": 2906.1923027038574, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -23816,8 +23876,8 @@ "None", "" ], - "asctime": "2020-01-29 07:23:21,809", - "created": 1580279001.8098807, + "asctime": "2020-12-21 22:33:03,994", + "created": 1608586383.9942572, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -23827,15 +23887,15 @@ "lineno": 22, "message": "Result (Return Value (response instance) for pure_json_protocol.receive with data data_id 0xaffe): None ()", "module": "test", - "msecs": 809.8807334899902, + "msecs": 994.2572116851807, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 2885.9305381774902, + "relativeCreated": 2906.564235687256, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -23844,8 +23904,8 @@ "None", "" ], - "asctime": "2020-01-29 07:23:21,810", - "created": 1580279001.810022, + "asctime": "2020-12-21 22:33:03,994", + "created": 1608586383.9944363, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -23855,41 +23915,41 @@ "lineno": 26, "message": "Expectation (Return Value (response instance) for pure_json_protocol.receive with data data_id 0xaffe): result = None ()", "module": "test", - "msecs": 810.0221157073975, + "msecs": 994.4362640380859, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 2886.0719203948975, + "relativeCreated": 2906.743288040161, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" } ], - "msecs": 810.1596832275391, + "msecs": 994.5948123931885, "msg": "Return Value (response instance) for pure_json_protocol.receive with data data_id 0xaffe is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 2886.209487915039, + "relativeCreated": 2906.9018363952637, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread", - "time_consumption": 0.00013756752014160156 + "time_consumption": 0.00015854835510253906 } ], - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread", - "time_consumption": 1.4094979763031006, - "time_finished": "2020-01-29 07:23:21,810", - "time_start": "2020-01-29 07:23:20,400" + "time_consumption": 1.412869930267334, + "time_finished": "2020-12-21 22:33:03,994", + "time_start": "2020-12-21 22:33:02,581" }, "socket_protocol.pure_json_protocol: Send and receive check.": { "args": null, - "asctime": "2020-01-29 07:23:19,692", - "created": 1580278999.6929293, + "asctime": "2020-12-21 22:33:01,871", + "created": 1608586381.8715048, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -23900,19 +23960,19 @@ "message": "socket_protocol.pure_json_protocol: Send and receive check.", "module": "__init__", "moduleLogger": [], - "msecs": 692.9292678833008, + "msecs": 871.5047836303711, "msg": "socket_protocol.pure_json_protocol: Send and receive check.", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 768.9790725708008, + "relativeCreated": 783.8118076324463, "stack_info": null, "testcaseLogger": [ { "args": [], - "asctime": "2020-01-29 07:23:20,195", - "created": 1580279000.195404, + "asctime": "2020-12-21 22:33:02,374", + "created": 1608586382.3746574, "exc_info": null, "exc_text": null, "filename": "test_normal_operation.py", @@ -23927,104 +23987,104 @@ "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:19,693", - "created": 1580278999.6930902, + "asctime": "2020-12-21 22:33:01,871", + "created": 1608586381.871734, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 295, + "lineno": 313, "message": "SJP: Cleaning up receive-buffer", "module": "__init__", - "msecs": 693.0902004241943, + "msecs": 871.7339038848877, "msg": "%s Cleaning up receive-buffer", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 769.1400051116943, + "relativeCreated": 784.0409278869629, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:19,693", - "created": 1580278999.6933074, + "asctime": "2020-12-21 22:33:01,871", + "created": 1608586381.8719707, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 199, + "lineno": 217, "message": "SJP: Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "module": "__init__", - "msecs": 693.3073997497559, + "msecs": 871.9706535339355, "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 769.3572044372559, + "relativeCreated": 784.2776775360107, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:19,693", - "created": 1580278999.6934245, + "asctime": "2020-12-21 22:33:01,872", + "created": 1608586381.8721097, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 295, + "lineno": 313, "message": "SJP: Cleaning up receive-buffer", "module": "__init__", - "msecs": 693.4244632720947, + "msecs": 872.1096515655518, "msg": "%s Cleaning up receive-buffer", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 769.4742679595947, + "relativeCreated": 784.416675567627, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:19,693", - "created": 1580278999.693593, + "asctime": "2020-12-21 22:33:01,872", + "created": 1608586381.8722541, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 199, + "lineno": 217, "message": "SJP: Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "module": "__init__", - "msecs": 693.5930252075195, + "msecs": 872.2541332244873, "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 769.6428298950195, + "relativeCreated": 784.5611572265625, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -24035,32 +24095,32 @@ 45054, "{'test': 'test'}" ], - "asctime": "2020-01-29 07:23:19,693", - "created": 1580278999.6937165, + "asctime": "2020-12-21 22:33:01,872", + "created": 1608586381.8723776, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 334, + "lineno": 352, "message": "SJP: TX -> status: 0, service_id: 10, data_id: 45054, data: \"{'test': 'test'}\"", "module": "__init__", - "msecs": 693.7165260314941, + "msecs": 872.3776340484619, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 769.7663307189941, + "relativeCreated": 784.6846580505371, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-01-29 07:23:19,693", - "created": 1580278999.693968, + "asctime": "2020-12-21 22:33:01,872", + "created": 1608586381.8726604, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -24070,21 +24130,21 @@ "lineno": 55, "message": "Send data: (79): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 7d 82 1c 8b 89", "module": "test_helpers", - "msecs": 693.9680576324463, + "msecs": 872.6603984832764, "msg": "Send data: (79): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 7d 82 1c 8b 89", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 770.0178623199463, + "relativeCreated": 784.9674224853516, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-01-29 07:23:19,844", - "created": 1580278999.8446112, + "asctime": "2020-12-21 22:33:02,023", + "created": 1608586382.0235343, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -24094,15 +24154,15 @@ "lineno": 66, "message": "Receive data (79): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 7d 82 1c 8b 89", "module": "test_helpers", - "msecs": 844.6111679077148, + "msecs": 23.534297943115234, "msg": "Receive data (79): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 7d 82 1c 8b 89", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 920.6609725952148, + "relativeCreated": 935.8413219451904, "stack_info": null, - "thread": 139631570671360, + "thread": 139622152926976, "threadName": "Thread-3" }, { @@ -24113,26 +24173,26 @@ "45054", "{'test': 'test'}" ], - "asctime": "2020-01-29 07:23:19,844", - "created": 1580278999.8449094, + "asctime": "2020-12-21 22:33:02,023", + "created": 1608586382.0237153, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 247, + "lineno": 259, "message": "SJP: RX <- status: 0, service_id: 10, data_id: 45054, data: \"{'test': 'test'}\"", "module": "__init__", - "msecs": 844.9094295501709, + "msecs": 23.71525764465332, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 920.9592342376709, + "relativeCreated": 936.0222816467285, "stack_info": null, - "thread": 139631570671360, + "thread": 139622152926976, "threadName": "Thread-3" }, { @@ -24140,26 +24200,26 @@ "SJP:", "response_data_method" ], - "asctime": "2020-01-29 07:23:19,845", - "created": 1580278999.8450718, + "asctime": "2020-12-21 22:33:02,023", + "created": 1608586382.0238383, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 264, + "lineno": 282, "message": "SJP: Executing callback response_data_method to process received data", "module": "__init__", - "msecs": 845.0717926025391, + "msecs": 23.838281631469727, "msg": "%s Executing callback %s to process received data", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 921.1215972900391, + "relativeCreated": 936.1453056335449, "stack_info": null, - "thread": 139631570671360, + "thread": 139622152926976, "threadName": "Thread-3" }, { @@ -24170,32 +24230,32 @@ 45054, "[1, 3, 's']" ], - "asctime": "2020-01-29 07:23:19,845", - "created": 1580278999.845209, + "asctime": "2020-12-21 22:33:02,023", + "created": 1608586382.0239198, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 334, + "lineno": 352, "message": "SJP: TX -> status: 5, service_id: 11, data_id: 45054, data: \"[1, 3, 's']\"", "module": "__init__", - "msecs": 845.2088832855225, + "msecs": 23.91982078552246, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 921.2586879730225, + "relativeCreated": 936.2268447875977, "stack_info": null, - "thread": 139631570671360, + "thread": 139622152926976, "threadName": "Thread-3" }, { "args": [], - "asctime": "2020-01-29 07:23:19,845", - "created": 1580278999.8455434, + "asctime": "2020-12-21 22:33:02,024", + "created": 1608586382.0240624, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -24205,21 +24265,21 @@ "lineno": 55, "message": "Send data: (74): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 35 2c 20 22 64 61 74 61 22 3a 20 5b 31 2c 20 33 2c 20 22 73 22 5d 7d 60 f8 dc 89", "module": "test_helpers", - "msecs": 845.543384552002, + "msecs": 24.062395095825195, "msg": "Send data: (74): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 35 2c 20 22 64 61 74 61 22 3a 20 5b 31 2c 20 33 2c 20 22 73 22 5d 7d 60 f8 dc 89", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 921.593189239502, + "relativeCreated": 936.3694190979004, "stack_info": null, - "thread": 139631570671360, + "thread": 139622152926976, "threadName": "Thread-3" }, { "args": [], - "asctime": "2020-01-29 07:23:19,996", - "created": 1580278999.9963133, + "asctime": "2020-12-21 22:33:02,174", + "created": 1608586382.1747656, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -24229,15 +24289,15 @@ "lineno": 66, "message": "Receive data (74): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 35 2c 20 22 64 61 74 61 22 3a 20 5b 31 2c 20 33 2c 20 22 73 22 5d 7d 60 f8 dc 89", "module": "test_helpers", - "msecs": 996.3133335113525, + "msecs": 174.76558685302734, "msg": "Receive data (74): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 35 30 35 34 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 35 2c 20 22 64 61 74 61 22 3a 20 5b 31 2c 20 33 2c 20 22 73 22 5d 7d 60 f8 dc 89", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 1072.3631381988525, + "relativeCreated": 1087.0726108551025, "stack_info": null, - "thread": 139631579064064, + "thread": 139622161319680, "threadName": "Thread-4" }, { @@ -24248,26 +24308,26 @@ "45054", "[1, 3, 's']" ], - "asctime": "2020-01-29 07:23:19,996", - "created": 1580278999.996649, + "asctime": "2020-12-21 22:33:02,175", + "created": 1608586382.1751964, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 247, + "lineno": 259, "message": "SJP: RX <- status: 5, service_id: 11, data_id: 45054, data: \"[1, 3, 's']\"", "module": "__init__", - "msecs": 996.6490268707275, + "msecs": 175.19640922546387, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 1072.6988315582275, + "relativeCreated": 1087.503433227539, "stack_info": null, - "thread": 139631579064064, + "thread": 139622161319680, "threadName": "Thread-4" }, { @@ -24275,74 +24335,74 @@ "SJP:", "Operation not permitted" ], - "asctime": "2020-01-29 07:23:19,996", - "created": 1580278999.996874, + "asctime": "2020-12-21 22:33:02,175", + "created": 1608586382.1754267, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "WARNING", "levelno": 30, - "lineno": 274, + "lineno": 292, "message": "SJP: Received message has a peculiar status: Operation not permitted", "module": "__init__", - "msecs": 996.8740940093994, + "msecs": 175.42672157287598, "msg": "%s Received message has a peculiar status: %s", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 1072.9238986968994, + "relativeCreated": 1087.7337455749512, "stack_info": null, - "thread": 139631579064064, + "thread": 139622161319680, "threadName": "Thread-4" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:19,997", - "created": 1580278999.997063, + "asctime": "2020-12-21 22:33:02,175", + "created": 1608586382.1756117, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 292, + "lineno": 310, "message": "SJP: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 997.0629215240479, + "msecs": 175.6117343902588, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 1073.1127262115479, + "relativeCreated": 1087.918758392334, "stack_info": null, - "thread": 139631579064064, + "thread": 139622161319680, "threadName": "Thread-4" } ], - "msecs": 195.404052734375, + "msecs": 374.65739250183105, "msg": "Send and received data by pure_json_protocol.", "name": "__tLogger__", "pathname": "src/tests/test_normal_operation.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 1271.453857421875, + "relativeCreated": 1286.9644165039062, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread", - "time_consumption": 0.19834113121032715 + "time_consumption": 0.19904565811157227 }, { "args": [ "True", "" ], - "asctime": "2020-01-29 07:23:20,196", - "created": 1580279000.1961527, + "asctime": "2020-12-21 22:33:02,375", + "created": 1608586382.3754456, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -24359,8 +24419,8 @@ "True", "" ], - "asctime": "2020-01-29 07:23:20,195", - "created": 1580279000.1957843, + "asctime": "2020-12-21 22:33:02,375", + "created": 1608586382.3750882, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -24370,15 +24430,15 @@ "lineno": 22, "message": "Result (Return value of send method): True ()", "module": "test", - "msecs": 195.784330368042, + "msecs": 375.0882148742676, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 1271.834135055542, + "relativeCreated": 1287.3952388763428, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -24387,8 +24447,8 @@ "True", "" ], - "asctime": "2020-01-29 07:23:20,195", - "created": 1580279000.1959913, + "asctime": "2020-12-21 22:33:02,375", + "created": 1608586382.375278, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -24398,37 +24458,37 @@ "lineno": 26, "message": "Expectation (Return value of send method): result = True ()", "module": "test", - "msecs": 195.99127769470215, + "msecs": 375.2779960632324, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 1272.0410823822021, + "relativeCreated": 1287.5850200653076, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" } ], - "msecs": 196.1526870727539, + "msecs": 375.4456043243408, "msg": "Return value of send method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 1272.202491760254, + "relativeCreated": 1287.752628326416, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread", - "time_consumption": 0.0001614093780517578 + "time_consumption": 0.00016760826110839844 }, { "args": [ "0", "" ], - "asctime": "2020-01-29 07:23:20,196", - "created": 1580279000.1966486, + "asctime": "2020-12-21 22:33:02,375", + "created": 1608586382.375984, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -24445,8 +24505,8 @@ "0", "" ], - "asctime": "2020-01-29 07:23:20,196", - "created": 1580279000.1963615, + "asctime": "2020-12-21 22:33:02,375", + "created": 1608586382.3756895, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -24456,15 +24516,15 @@ "lineno": 22, "message": "Result (Request Status (Okay) transfered via pure_json_protocol): 0 ()", "module": "test", - "msecs": 196.36154174804688, + "msecs": 375.6895065307617, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 1272.4113464355469, + "relativeCreated": 1287.996530532837, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -24473,8 +24533,8 @@ "0", "" ], - "asctime": "2020-01-29 07:23:20,196", - "created": 1580279000.196512, + "asctime": "2020-12-21 22:33:02,375", + "created": 1608586382.375836, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -24484,37 +24544,37 @@ "lineno": 26, "message": "Expectation (Request Status (Okay) transfered via pure_json_protocol): result = 0 ()", "module": "test", - "msecs": 196.51198387145996, + "msecs": 375.8358955383301, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 1272.56178855896, + "relativeCreated": 1288.1429195404053, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" } ], - "msecs": 196.64859771728516, + "msecs": 375.98395347595215, "msg": "Request Status (Okay) transfered via pure_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 1272.6984024047852, + "relativeCreated": 1288.2909774780273, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread", - "time_consumption": 0.0001366138458251953 + "time_consumption": 0.0001480579376220703 }, { "args": [ "{'test': 'test'}", "" ], - "asctime": "2020-01-29 07:23:20,197", - "created": 1580279000.1971874, + "asctime": "2020-12-21 22:33:02,376", + "created": 1608586382.3765419, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -24531,8 +24591,8 @@ "{ 'test': 'test' }", "" ], - "asctime": "2020-01-29 07:23:20,196", - "created": 1580279000.1968634, + "asctime": "2020-12-21 22:33:02,376", + "created": 1608586382.3762195, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -24542,15 +24602,15 @@ "lineno": 22, "message": "Result (Request Data transfered via pure_json_protocol): { 'test': 'test' } ()", "module": "test", - "msecs": 196.86341285705566, + "msecs": 376.2195110321045, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 1272.9132175445557, + "relativeCreated": 1288.5265350341797, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -24559,8 +24619,8 @@ "{ 'test': 'test' }", "" ], - "asctime": "2020-01-29 07:23:20,197", - "created": 1580279000.1970162, + "asctime": "2020-12-21 22:33:02,376", + "created": 1608586382.3763697, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -24570,37 +24630,37 @@ "lineno": 26, "message": "Expectation (Request Data transfered via pure_json_protocol): result = { 'test': 'test' } ()", "module": "test", - "msecs": 197.01623916625977, + "msecs": 376.3697147369385, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 1273.0660438537598, + "relativeCreated": 1288.6767387390137, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" } ], - "msecs": 197.1874237060547, + "msecs": 376.5418529510498, "msg": "Request Data transfered via pure_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 1273.2372283935547, + "relativeCreated": 1288.848876953125, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread", - "time_consumption": 0.00017118453979492188 + "time_consumption": 0.00017213821411132812 }, { "args": [ "5", "" ], - "asctime": "2020-01-29 07:23:20,197", - "created": 1580279000.1976693, + "asctime": "2020-12-21 22:33:02,377", + "created": 1608586382.377088, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -24617,8 +24677,8 @@ "5", "" ], - "asctime": "2020-01-29 07:23:20,197", - "created": 1580279000.1974137, + "asctime": "2020-12-21 22:33:02,376", + "created": 1608586382.3768022, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -24628,15 +24688,15 @@ "lineno": 22, "message": "Result (Response Status (Operation not permitted) transfered via pure_json_protocol): 5 ()", "module": "test", - "msecs": 197.41368293762207, + "msecs": 376.8022060394287, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 1273.463487625122, + "relativeCreated": 1289.109230041504, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -24645,8 +24705,8 @@ "5", "" ], - "asctime": "2020-01-29 07:23:20,197", - "created": 1580279000.1975431, + "asctime": "2020-12-21 22:33:02,376", + "created": 1608586382.376949, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -24656,37 +24716,37 @@ "lineno": 26, "message": "Expectation (Response Status (Operation not permitted) transfered via pure_json_protocol): result = 5 ()", "module": "test", - "msecs": 197.54314422607422, + "msecs": 376.9490718841553, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 1273.5929489135742, + "relativeCreated": 1289.2560958862305, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" } ], - "msecs": 197.66926765441895, + "msecs": 377.0880699157715, "msg": "Response Status (Operation not permitted) transfered via pure_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 1273.719072341919, + "relativeCreated": 1289.3950939178467, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread", - "time_consumption": 0.00012612342834472656 + "time_consumption": 0.00013899803161621094 }, { "args": [ "[1, 3, 's']", "" ], - "asctime": "2020-01-29 07:23:20,198", - "created": 1580279000.1981807, + "asctime": "2020-12-21 22:33:02,377", + "created": 1608586382.3776622, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -24703,8 +24763,8 @@ "[ 1, 3, 's' ]", "" ], - "asctime": "2020-01-29 07:23:20,197", - "created": 1580279000.1978652, + "asctime": "2020-12-21 22:33:02,377", + "created": 1608586382.377319, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -24714,15 +24774,15 @@ "lineno": 22, "message": "Result (Response Data transfered via pure_json_protocol): [ 1, 3, 's' ] ()", "module": "test", - "msecs": 197.86524772644043, + "msecs": 377.3190975189209, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 1273.9150524139404, + "relativeCreated": 1289.626121520996, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -24731,8 +24791,8 @@ "[ 1, 3, 's' ]", "" ], - "asctime": "2020-01-29 07:23:20,198", - "created": 1580279000.1980035, + "asctime": "2020-12-21 22:33:02,377", + "created": 1608586382.3774714, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -24742,37 +24802,37 @@ "lineno": 26, "message": "Expectation (Response Data transfered via pure_json_protocol): result = [ 1, 3, 's' ] ()", "module": "test", - "msecs": 198.00353050231934, + "msecs": 377.4714469909668, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 1274.0533351898193, + "relativeCreated": 1289.778470993042, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" } ], - "msecs": 198.1806755065918, + "msecs": 377.66218185424805, "msg": "Response Data transfered via pure_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 1274.2304801940918, + "relativeCreated": 1289.9692058563232, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread", - "time_consumption": 0.00017714500427246094 + "time_consumption": 0.00019073486328125 }, { "args": [ "None", "" ], - "asctime": "2020-01-29 07:23:20,299", - "created": 1580279000.2991695, + "asctime": "2020-12-21 22:33:02,478", + "created": 1608586382.478912, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -24790,26 +24850,26 @@ "11", "45054" ], - "asctime": "2020-01-29 07:23:20,298", - "created": 1580279000.2986162, + "asctime": "2020-12-21 22:33:02,478", + "created": 1608586382.4782338, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 309, + "lineno": 327, "message": "SJP: TIMEOUT (0.1s): Requested data (service_id: 11; data_id: 45054) not in buffer.", "module": "__init__", - "msecs": 298.6161708831787, + "msecs": 478.23381423950195, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 1374.6659755706787, + "relativeCreated": 1390.5408382415771, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -24818,8 +24878,8 @@ "None", "" ], - "asctime": "2020-01-29 07:23:20,298", - "created": 1580279000.2988617, + "asctime": "2020-12-21 22:33:02,478", + "created": 1608586382.478574, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -24829,15 +24889,15 @@ "lineno": 22, "message": "Result (Return Value (request instance) for pure_json_protocol.receive with data data_id 0xaffe): None ()", "module": "test", - "msecs": 298.8617420196533, + "msecs": 478.5740375518799, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 1374.9115467071533, + "relativeCreated": 1390.881061553955, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -24846,8 +24906,8 @@ "None", "" ], - "asctime": "2020-01-29 07:23:20,299", - "created": 1580279000.2990232, + "asctime": "2020-12-21 22:33:02,478", + "created": 1608586382.4787576, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -24857,37 +24917,37 @@ "lineno": 26, "message": "Expectation (Return Value (request instance) for pure_json_protocol.receive with data data_id 0xaffe): result = None ()", "module": "test", - "msecs": 299.0231513977051, + "msecs": 478.7576198577881, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 1375.072956085205, + "relativeCreated": 1391.0646438598633, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" } ], - "msecs": 299.16954040527344, + "msecs": 478.9121150970459, "msg": "Return Value (request instance) for pure_json_protocol.receive with data data_id 0xaffe is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 1375.2193450927734, + "relativeCreated": 1391.219139099121, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread", - "time_consumption": 0.00014638900756835938 + "time_consumption": 0.0001544952392578125 }, { "args": [ "None", "" ], - "asctime": "2020-01-29 07:23:20,400", - "created": 1580279000.4002306, + "asctime": "2020-12-21 22:33:02,580", + "created": 1608586382.5808768, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -24905,26 +24965,26 @@ "10", "45054" ], - "asctime": "2020-01-29 07:23:20,399", - "created": 1580279000.3996508, + "asctime": "2020-12-21 22:33:02,579", + "created": 1608586382.5795164, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 309, + "lineno": 327, "message": "SJP: TIMEOUT (0.1s): Requested data (service_id: 10; data_id: 45054) not in buffer.", "module": "__init__", - "msecs": 399.65081214904785, + "msecs": 579.5164108276367, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 1475.7006168365479, + "relativeCreated": 1491.823434829712, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -24933,8 +24993,8 @@ "None", "" ], - "asctime": "2020-01-29 07:23:20,399", - "created": 1580279000.3999166, + "asctime": "2020-12-21 22:33:02,580", + "created": 1608586382.5801826, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -24944,15 +25004,15 @@ "lineno": 22, "message": "Result (Return Value (response instance) for pure_json_protocol.receive with data data_id 0xaffe): None ()", "module": "test", - "msecs": 399.9166488647461, + "msecs": 580.1825523376465, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 1475.966453552246, + "relativeCreated": 1492.4895763397217, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -24961,8 +25021,8 @@ "None", "" ], - "asctime": "2020-01-29 07:23:20,400", - "created": 1580279000.4000823, + "asctime": "2020-12-21 22:33:02,580", + "created": 1608586382.5805354, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -24972,41 +25032,41 @@ "lineno": 26, "message": "Expectation (Return Value (response instance) for pure_json_protocol.receive with data data_id 0xaffe): result = None ()", "module": "test", - "msecs": 400.0823497772217, + "msecs": 580.5354118347168, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 1476.1321544647217, + "relativeCreated": 1492.842435836792, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" } ], - "msecs": 400.23064613342285, + "msecs": 580.8768272399902, "msg": "Return Value (response instance) for pure_json_protocol.receive with data data_id 0xaffe is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 1476.2804508209229, + "relativeCreated": 1493.1838512420654, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread", - "time_consumption": 0.00014829635620117188 + "time_consumption": 0.0003414154052734375 } ], - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread", - "time_consumption": 0.7073013782501221, - "time_finished": "2020-01-29 07:23:20,400", - "time_start": "2020-01-29 07:23:19,692" + "time_consumption": 0.7093720436096191, + "time_finished": "2020-12-21 22:33:02,580", + "time_start": "2020-12-21 22:33:01,871" }, "socket_protocol.pure_json_protocol: Timeout measurement for authentification and send method.": { "args": null, - "asctime": "2020-01-29 07:23:26,359", - "created": 1580279006.3598838, + "asctime": "2020-12-21 22:33:08,558", + "created": 1608586388.5583332, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -25017,24 +25077,24 @@ "message": "socket_protocol.pure_json_protocol: Timeout measurement for authentification and send method.", "module": "__init__", "moduleLogger": [], - "msecs": 359.88378524780273, + "msecs": 558.333158493042, "msg": "socket_protocol.pure_json_protocol: Timeout measurement for authentification and send method.", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 7435.933589935303, + "relativeCreated": 7470.640182495117, "stack_info": null, "testcaseLogger": [ { "args": [ - "0.2016153335571289", + "0.20124530792236328", "0.2", "0.22000000000000003", "" ], - "asctime": "2020-01-29 07:23:26,562", - "created": 1580279006.5624557, + "asctime": "2020-12-21 22:33:08,761", + "created": 1608586388.761356, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -25042,137 +25102,137 @@ "levelname": "INFO", "levelno": 20, "lineno": 218, - "message": "Timeout for authentification is correct (Content 0.2016153335571289 in [0.2 ... 0.22000000000000003] and Type is ).", + "message": "Timeout for authentification is correct (Content 0.20124530792236328 in [0.2 ... 0.22000000000000003] and Type is ).", "module": "test", "moduleLogger": [ { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:26,360", - "created": 1580279006.3600183, + "asctime": "2020-12-21 22:33:08,558", + "created": 1608586388.558641, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 295, + "lineno": 313, "message": "SJP: Cleaning up receive-buffer", "module": "__init__", - "msecs": 360.018253326416, + "msecs": 558.6409568786621, "msg": "%s Cleaning up receive-buffer", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 7436.068058013916, + "relativeCreated": 7470.947980880737, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:26,360", - "created": 1580279006.360189, + "asctime": "2020-12-21 22:33:08,558", + "created": 1608586388.558948, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 199, + "lineno": 217, "message": "SJP: Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "module": "__init__", - "msecs": 360.18896102905273, + "msecs": 558.9480400085449, "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 7436.238765716553, + "relativeCreated": 7471.25506401062, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:26,360", - "created": 1580279006.3602912, + "asctime": "2020-12-21 22:33:08,559", + "created": 1608586388.5591404, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 295, + "lineno": 313, "message": "SJP: Cleaning up receive-buffer", "module": "__init__", - "msecs": 360.2912425994873, + "msecs": 559.1404438018799, "msg": "%s Cleaning up receive-buffer", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 7436.341047286987, + "relativeCreated": 7471.447467803955, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:26,360", - "created": 1580279006.3604398, + "asctime": "2020-12-21 22:33:08,559", + "created": 1608586388.5593998, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 199, + "lineno": 217, "message": "SJP: Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "module": "__init__", - "msecs": 360.4397773742676, + "msecs": 559.3998432159424, "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 7436.489582061768, + "relativeCreated": 7471.706867218018, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:26,360", - "created": 1580279006.360527, + "asctime": "2020-12-21 22:33:08,559", + "created": 1608586388.5595672, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "authentificate", "levelname": "INFO", "levelno": 20, - "lineno": 378, + "lineno": 396, "message": "SJP: Requesting seed for authentification", "module": "__init__", - "msecs": 360.52703857421875, + "msecs": 559.5672130584717, "msg": "%s Requesting seed for authentification", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 7436.576843261719, + "relativeCreated": 7471.874237060547, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -25183,32 +25243,32 @@ 0, "None" ], - "asctime": "2020-01-29 07:23:26,360", - "created": 1580279006.3606014, + "asctime": "2020-12-21 22:33:08,559", + "created": 1608586388.5597115, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 334, + "lineno": 352, "message": "SJP: TX -> status: 0, service_id: 1, data_id: 0, data: \"None\"", "module": "__init__", - "msecs": 360.60142517089844, + "msecs": 559.7114562988281, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 7436.651229858398, + "relativeCreated": 7472.018480300903, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-01-29 07:23:26,360", - "created": 1580279006.3608, + "asctime": "2020-12-21 22:33:08,560", + "created": 1608586388.5600815, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -25218,25 +25278,25 @@ "lineno": 55, "message": "Send data: (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 9e 85 7b 8d", "module": "test_helpers", - "msecs": 360.80002784729004, + "msecs": 560.0814819335938, "msg": "Send data: (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 9e 85 7b 8d", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 7436.84983253479, + "relativeCreated": 7472.388505935669, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { "args": [ "Timeout for authentification", - "0.2016153335571289", + "0.20124530792236328", "" ], - "asctime": "2020-01-29 07:23:26,562", - "created": 1580279006.5622058, + "asctime": "2020-12-21 22:33:08,760", + "created": 1608586388.7608838, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -25244,17 +25304,17 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 22, - "message": "Result (Timeout for authentification): 0.2016153335571289 ()", + "message": "Result (Timeout for authentification): 0.20124530792236328 ()", "module": "test", - "msecs": 562.2057914733887, + "msecs": 760.8838081359863, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 7638.255596160889, + "relativeCreated": 7673.1908321380615, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -25263,8 +25323,8 @@ "0.2", "0.22000000000000003" ], - "asctime": "2020-01-29 07:23:26,562", - "created": 1580279006.5623696, + "asctime": "2020-12-21 22:33:08,761", + "created": 1608586388.7611704, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -25274,39 +25334,39 @@ "lineno": 30, "message": "Expectation (Timeout for authentification): 0.2 <= result <= 0.22000000000000003", "module": "test", - "msecs": 562.3695850372314, + "msecs": 761.1703872680664, "msg": "Expectation (%s): %s <= result <= %s", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 7638.419389724731, + "relativeCreated": 7673.477411270142, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" } ], - "msecs": 562.4556541442871, + "msecs": 761.3561153411865, "msg": "Timeout for authentification is correct (Content %s in [%s ... %s] and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 7638.505458831787, + "relativeCreated": 7673.663139343262, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread", - "time_consumption": 8.606910705566406e-05 + "time_consumption": 0.0001857280731201172 }, { "args": [ - "0.5011227130889893", + "0.5021066665649414", "0.5", "0.55", "" ], - "asctime": "2020-01-29 07:23:27,063", - "created": 1580279007.0639951, + "asctime": "2020-12-21 22:33:09,264", + "created": 1608586389.2643282, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -25314,33 +25374,33 @@ "levelname": "INFO", "levelno": 20, "lineno": 218, - "message": "Timeout for authentification is correct (Content 0.5011227130889893 in [0.5 ... 0.55] and Type is ).", + "message": "Timeout for authentification is correct (Content 0.5021066665649414 in [0.5 ... 0.55] and Type is ).", "module": "test", "moduleLogger": [ { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:26,562", - "created": 1580279006.56258, + "asctime": "2020-12-21 22:33:08,761", + "created": 1608586388.7616549, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "authentificate", "levelname": "INFO", "levelno": 20, - "lineno": 378, + "lineno": 396, "message": "SJP: Requesting seed for authentification", "module": "__init__", - "msecs": 562.5801086425781, + "msecs": 761.6548538208008, "msg": "%s Requesting seed for authentification", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 7638.629913330078, + "relativeCreated": 7673.961877822876, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -25351,32 +25411,32 @@ 0, "None" ], - "asctime": "2020-01-29 07:23:26,562", - "created": 1580279006.5626662, + "asctime": "2020-12-21 22:33:08,761", + "created": 1608586388.7618334, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 334, + "lineno": 352, "message": "SJP: TX -> status: 0, service_id: 1, data_id: 0, data: \"None\"", "module": "__init__", - "msecs": 562.6661777496338, + "msecs": 761.8334293365479, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 7638.715982437134, + "relativeCreated": 7674.140453338623, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-01-29 07:23:26,562", - "created": 1580279006.5628593, + "asctime": "2020-12-21 22:33:08,762", + "created": 1608586388.762243, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -25386,25 +25446,25 @@ "lineno": 55, "message": "Send data: (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 9e 85 7b 8d", "module": "test_helpers", - "msecs": 562.859296798706, + "msecs": 762.2430324554443, "msg": "Send data: (62): 7b 22 64 61 74 61 5f 69 64 22 3a 20 30 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 6e 75 6c 6c 7d 9e 85 7b 8d", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 7638.909101486206, + "relativeCreated": 7674.5500564575195, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { "args": [ "Timeout for authentification", - "0.5011227130889893", + "0.5021066665649414", "" ], - "asctime": "2020-01-29 07:23:27,063", - "created": 1580279007.0637465, + "asctime": "2020-12-21 22:33:09,263", + "created": 1608586389.2638261, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -25412,17 +25472,17 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 22, - "message": "Result (Timeout for authentification): 0.5011227130889893 ()", + "message": "Result (Timeout for authentification): 0.5021066665649414 ()", "module": "test", - "msecs": 63.74645233154297, + "msecs": 263.8261318206787, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 8139.796257019043, + "relativeCreated": 8176.133155822754, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -25431,8 +25491,8 @@ "0.5", "0.55" ], - "asctime": "2020-01-29 07:23:27,063", - "created": 1580279007.0639107, + "asctime": "2020-12-21 22:33:09,264", + "created": 1608586389.2641158, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -25442,39 +25502,39 @@ "lineno": 30, "message": "Expectation (Timeout for authentification): 0.5 <= result <= 0.55", "module": "test", - "msecs": 63.910722732543945, + "msecs": 264.1158103942871, "msg": "Expectation (%s): %s <= result <= %s", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 8139.960527420044, + "relativeCreated": 8176.422834396362, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" } ], - "msecs": 63.9951229095459, + "msecs": 264.3282413482666, "msg": "Timeout for authentification is correct (Content %s in [%s ... %s] and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 8140.044927597046, + "relativeCreated": 8176.635265350342, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread", - "time_consumption": 8.440017700195312e-05 + "time_consumption": 0.0002124309539794922 }, { "args": [ - "0.20057988166809082", + "0.20095443725585938", "0.2", "0.22000000000000003", "" ], - "asctime": "2020-01-29 07:23:27,264", - "created": 1580279007.2648807, + "asctime": "2020-12-21 22:33:09,465", + "created": 1608586389.4659371, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -25482,7 +25542,7 @@ "levelname": "INFO", "levelno": 20, "lineno": 218, - "message": "Timeout for send method is correct (Content 0.20057988166809082 in [0.2 ... 0.22000000000000003] and Type is ).", + "message": "Timeout for send method is correct (Content 0.20095443725585938 in [0.2 ... 0.22000000000000003] and Type is ).", "module": "test", "moduleLogger": [ { @@ -25492,36 +25552,36 @@ "30", "0" ], - "asctime": "2020-01-29 07:23:27,264", - "created": 1580279007.2645383, + "asctime": "2020-12-21 22:33:09,465", + "created": 1608586389.4652781, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 309, + "lineno": 327, "message": "SJP: TIMEOUT (0.2s): Requested data (service_id: 30; data_id: 0) not in buffer.", "module": "__init__", - "msecs": 264.5382881164551, + "msecs": 465.27814865112305, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 8340.588092803955, + "relativeCreated": 8377.585172653198, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { "args": [ "Timeout for send method", - "0.20057988166809082", + "0.20095443725585938", "" ], - "asctime": "2020-01-29 07:23:27,264", - "created": 1580279007.2647128, + "asctime": "2020-12-21 22:33:09,465", + "created": 1608586389.4655933, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -25529,17 +25589,17 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 22, - "message": "Result (Timeout for send method): 0.20057988166809082 ()", + "message": "Result (Timeout for send method): 0.20095443725585938 ()", "module": "test", - "msecs": 264.7128105163574, + "msecs": 465.5933380126953, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 8340.762615203857, + "relativeCreated": 8377.90036201477, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -25548,8 +25608,8 @@ "0.2", "0.22000000000000003" ], - "asctime": "2020-01-29 07:23:27,264", - "created": 1580279007.2647963, + "asctime": "2020-12-21 22:33:09,465", + "created": 1608586389.465767, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -25559,39 +25619,39 @@ "lineno": 30, "message": "Expectation (Timeout for send method): 0.2 <= result <= 0.22000000000000003", "module": "test", - "msecs": 264.79625701904297, + "msecs": 465.76690673828125, "msg": "Expectation (%s): %s <= result <= %s", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 8340.846061706543, + "relativeCreated": 8378.073930740356, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" } ], - "msecs": 264.8806571960449, + "msecs": 465.93713760375977, "msg": "Timeout for send method is correct (Content %s in [%s ... %s] and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 8340.930461883545, + "relativeCreated": 8378.244161605835, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread", - "time_consumption": 8.440017700195312e-05 + "time_consumption": 0.00017023086547851562 }, { "args": [ - "0.5010545253753662", + "0.5017862319946289", "0.5", "0.55", "" ], - "asctime": "2020-01-29 07:23:27,766", - "created": 1580279007.7663608, + "asctime": "2020-12-21 22:33:09,968", + "created": 1608586389.968352, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -25599,7 +25659,7 @@ "levelname": "INFO", "levelno": 20, "lineno": 218, - "message": "Timeout for send method is correct (Content 0.5010545253753662 in [0.5 ... 0.55] and Type is ).", + "message": "Timeout for send method is correct (Content 0.5017862319946289 in [0.5 ... 0.55] and Type is ).", "module": "test", "moduleLogger": [ { @@ -25609,36 +25669,36 @@ "30", "0" ], - "asctime": "2020-01-29 07:23:27,765", - "created": 1580279007.7658815, + "asctime": "2020-12-21 22:33:09,967", + "created": 1608586389.9677086, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 309, + "lineno": 327, "message": "SJP: TIMEOUT (0.5s): Requested data (service_id: 30; data_id: 0) not in buffer.", "module": "__init__", - "msecs": 765.8815383911133, + "msecs": 967.7085876464844, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 8841.931343078613, + "relativeCreated": 8880.01561164856, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { "args": [ "Timeout for send method", - "0.5010545253753662", + "0.5017862319946289", "" ], - "asctime": "2020-01-29 07:23:27,766", - "created": 1580279007.766067, + "asctime": "2020-12-21 22:33:09,968", + "created": 1608586389.9680188, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -25646,17 +25706,17 @@ "levelname": "DEBUG", "levelno": 10, "lineno": 22, - "message": "Result (Timeout for send method): 0.5010545253753662 ()", + "message": "Result (Timeout for send method): 0.5017862319946289 ()", "module": "test", - "msecs": 766.0670280456543, + "msecs": 968.0187702178955, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 8842.116832733154, + "relativeCreated": 8880.32579421997, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -25665,8 +25725,8 @@ "0.5", "0.55" ], - "asctime": "2020-01-29 07:23:27,766", - "created": 1580279007.766154, + "asctime": "2020-12-21 22:33:09,968", + "created": 1608586389.9681895, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -25676,41 +25736,41 @@ "lineno": 30, "message": "Expectation (Timeout for send method): 0.5 <= result <= 0.55", "module": "test", - "msecs": 766.1540508270264, + "msecs": 968.1894779205322, "msg": "Expectation (%s): %s <= result <= %s", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 8842.203855514526, + "relativeCreated": 8880.496501922607, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" } ], - "msecs": 766.3607597351074, + "msecs": 968.3520793914795, "msg": "Timeout for send method is correct (Content %s in [%s ... %s] and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 8842.410564422607, + "relativeCreated": 8880.659103393555, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread", - "time_consumption": 0.0002067089080810547 + "time_consumption": 0.00016260147094726562 } ], - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread", - "time_consumption": 1.4064769744873047, - "time_finished": "2020-01-29 07:23:27,766", - "time_start": "2020-01-29 07:23:26,359" + "time_consumption": 1.4100189208984375, + "time_finished": "2020-12-21 22:33:09,968", + "time_start": "2020-12-21 22:33:08,558" }, "socket_protocol.pure_json_protocol: Wildcard Callback registration for data_id.": { "args": null, - "asctime": "2020-01-29 07:23:23,228", - "created": 1580279003.228065, + "asctime": "2020-12-21 22:33:05,415", + "created": 1608586385.4150748, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -25721,19 +25781,19 @@ "message": "socket_protocol.pure_json_protocol: Wildcard Callback registration for data_id.", "module": "__init__", "moduleLogger": [], - "msecs": 228.06501388549805, + "msecs": 415.07482528686523, "msg": "socket_protocol.pure_json_protocol: Wildcard Callback registration for data_id.", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 4304.114818572998, + "relativeCreated": 4327.38184928894, "stack_info": null, "testcaseLogger": [ { "args": [], - "asctime": "2020-01-29 07:23:23,731", - "created": 1580279003.7314513, + "asctime": "2020-12-21 22:33:05,918", + "created": 1608586385.9186897, "exc_info": null, "exc_text": null, "filename": "test_normal_operation.py", @@ -25748,104 +25808,104 @@ "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:23,228", - "created": 1580279003.228341, + "asctime": "2020-12-21 22:33:05,415", + "created": 1608586385.415369, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 295, + "lineno": 313, "message": "SJP: Cleaning up receive-buffer", "module": "__init__", - "msecs": 228.34110260009766, + "msecs": 415.36903381347656, "msg": "%s Cleaning up receive-buffer", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 4304.390907287598, + "relativeCreated": 4327.676057815552, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:23,228", - "created": 1580279003.2286594, + "asctime": "2020-12-21 22:33:05,415", + "created": 1608586385.415672, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 199, + "lineno": 217, "message": "SJP: Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "module": "__init__", - "msecs": 228.65939140319824, + "msecs": 415.67206382751465, "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 4304.709196090698, + "relativeCreated": 4327.97908782959, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:23,228", - "created": 1580279003.2288451, + "asctime": "2020-12-21 22:33:05,415", + "created": 1608586385.4158628, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 295, + "lineno": 313, "message": "SJP: Cleaning up receive-buffer", "module": "__init__", - "msecs": 228.84511947631836, + "msecs": 415.8627986907959, "msg": "%s Cleaning up receive-buffer", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 4304.894924163818, + "relativeCreated": 4328.169822692871, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:23,229", - "created": 1580279003.2291028, + "asctime": "2020-12-21 22:33:05,416", + "created": 1608586385.4161448, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 199, + "lineno": 217, "message": "SJP: Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "module": "__init__", - "msecs": 229.10284996032715, + "msecs": 416.14484786987305, "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 4305.152654647827, + "relativeCreated": 4328.451871871948, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -25856,32 +25916,32 @@ 48879, "{'test': 'test'}" ], - "asctime": "2020-01-29 07:23:23,229", - "created": 1580279003.2293463, + "asctime": "2020-12-21 22:33:05,416", + "created": 1608586385.41635, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 334, + "lineno": 352, "message": "SJP: TX -> status: 0, service_id: 10, data_id: 48879, data: \"{'test': 'test'}\"", "module": "__init__", - "msecs": 229.34627532958984, + "msecs": 416.3498878479004, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 4305.39608001709, + "relativeCreated": 4328.656911849976, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-01-29 07:23:23,229", - "created": 1580279003.2297533, + "asctime": "2020-12-21 22:33:05,416", + "created": 1608586385.4167783, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -25891,21 +25951,21 @@ "lineno": 55, "message": "Send data: (79): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 7d cc a2 b9 e6", "module": "test_helpers", - "msecs": 229.7532558441162, + "msecs": 416.7783260345459, "msg": "Send data: (79): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 7d cc a2 b9 e6", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 4305.803060531616, + "relativeCreated": 4329.085350036621, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-01-29 07:23:23,380", - "created": 1580279003.3806496, + "asctime": "2020-12-21 22:33:05,567", + "created": 1608586385.567795, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -25915,15 +25975,15 @@ "lineno": 66, "message": "Receive data (79): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 7d cc a2 b9 e6", "module": "test_helpers", - "msecs": 380.6495666503906, + "msecs": 567.7950382232666, "msg": "Receive data (79): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 7d cc a2 b9 e6", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 4456.699371337891, + "relativeCreated": 4480.102062225342, "stack_info": null, - "thread": 139631579064064, + "thread": 139622161319680, "threadName": "Thread-15" }, { @@ -25934,26 +25994,26 @@ "48879", "{'test': 'test'}" ], - "asctime": "2020-01-29 07:23:23,381", - "created": 1580279003.381059, + "asctime": "2020-12-21 22:33:05,568", + "created": 1608586385.5682182, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 247, + "lineno": 259, "message": "SJP: RX <- status: 0, service_id: 10, data_id: 48879, data: \"{'test': 'test'}\"", "module": "__init__", - "msecs": 381.058931350708, + "msecs": 568.2182312011719, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 4457.108736038208, + "relativeCreated": 4480.525255203247, "stack_info": null, - "thread": 139631579064064, + "thread": 139622161319680, "threadName": "Thread-15" }, { @@ -25961,26 +26021,26 @@ "SJP:", "response_data_method" ], - "asctime": "2020-01-29 07:23:23,381", - "created": 1580279003.3813062, + "asctime": "2020-12-21 22:33:05,568", + "created": 1608586385.568422, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 264, + "lineno": 282, "message": "SJP: Executing callback response_data_method to process received data", "module": "__init__", - "msecs": 381.3061714172363, + "msecs": 568.4220790863037, "msg": "%s Executing callback %s to process received data", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 4457.355976104736, + "relativeCreated": 4480.729103088379, "stack_info": null, - "thread": 139631579064064, + "thread": 139622161319680, "threadName": "Thread-15" }, { @@ -25991,32 +26051,32 @@ 48879, "[1, 3, 's']" ], - "asctime": "2020-01-29 07:23:23,381", - "created": 1580279003.3814929, + "asctime": "2020-12-21 22:33:05,568", + "created": 1608586385.568629, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 334, + "lineno": 352, "message": "SJP: TX -> status: 5, service_id: 11, data_id: 48879, data: \"[1, 3, 's']\"", "module": "__init__", - "msecs": 381.49285316467285, + "msecs": 568.6290264129639, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 4457.542657852173, + "relativeCreated": 4480.936050415039, "stack_info": null, - "thread": 139631579064064, + "thread": 139622161319680, "threadName": "Thread-15" }, { "args": [], - "asctime": "2020-01-29 07:23:23,381", - "created": 1580279003.3818831, + "asctime": "2020-12-21 22:33:05,569", + "created": 1608586385.5690382, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -26026,21 +26086,21 @@ "lineno": 55, "message": "Send data: (74): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 35 2c 20 22 64 61 74 61 22 3a 20 5b 31 2c 20 33 2c 20 22 73 22 5d 7d 7d 1e 6e 1b", "module": "test_helpers", - "msecs": 381.8831443786621, + "msecs": 569.0381526947021, "msg": "Send data: (74): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 35 2c 20 22 64 61 74 61 22 3a 20 5b 31 2c 20 33 2c 20 22 73 22 5d 7d 7d 1e 6e 1b", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 4457.932949066162, + "relativeCreated": 4481.345176696777, "stack_info": null, - "thread": 139631579064064, + "thread": 139622161319680, "threadName": "Thread-15" }, { "args": [], - "asctime": "2020-01-29 07:23:23,532", - "created": 1580279003.5327373, + "asctime": "2020-12-21 22:33:05,719", + "created": 1608586385.7199888, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -26050,15 +26110,15 @@ "lineno": 66, "message": "Receive data (74): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 35 2c 20 22 64 61 74 61 22 3a 20 5b 31 2c 20 33 2c 20 22 73 22 5d 7d 7d 1e 6e 1b", "module": "test_helpers", - "msecs": 532.7372550964355, + "msecs": 719.9888229370117, "msg": "Receive data (74): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 35 2c 20 22 64 61 74 61 22 3a 20 5b 31 2c 20 33 2c 20 22 73 22 5d 7d 7d 1e 6e 1b", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 4608.787059783936, + "relativeCreated": 4632.295846939087, "stack_info": null, - "thread": 139631570671360, + "thread": 139622152926976, "threadName": "Thread-16" }, { @@ -26069,26 +26129,26 @@ "48879", "[1, 3, 's']" ], - "asctime": "2020-01-29 07:23:23,533", - "created": 1580279003.533114, + "asctime": "2020-12-21 22:33:05,720", + "created": 1608586385.7204137, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 247, + "lineno": 259, "message": "SJP: RX <- status: 5, service_id: 11, data_id: 48879, data: \"[1, 3, 's']\"", "module": "__init__", - "msecs": 533.113956451416, + "msecs": 720.4136848449707, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 4609.163761138916, + "relativeCreated": 4632.720708847046, "stack_info": null, - "thread": 139631570671360, + "thread": 139622152926976, "threadName": "Thread-16" }, { @@ -26096,74 +26156,74 @@ "SJP:", "Operation not permitted" ], - "asctime": "2020-01-29 07:23:23,533", - "created": 1580279003.5333865, + "asctime": "2020-12-21 22:33:05,720", + "created": 1608586385.7206457, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "WARNING", "levelno": 30, - "lineno": 274, + "lineno": 292, "message": "SJP: Received message has a peculiar status: Operation not permitted", "module": "__init__", - "msecs": 533.3864688873291, + "msecs": 720.6456661224365, "msg": "%s Received message has a peculiar status: %s", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 4609.436273574829, + "relativeCreated": 4632.952690124512, "stack_info": null, - "thread": 139631570671360, + "thread": 139622152926976, "threadName": "Thread-16" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:23,533", - "created": 1580279003.5335774, + "asctime": "2020-12-21 22:33:05,720", + "created": 1608586385.7209022, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 292, + "lineno": 310, "message": "SJP: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 533.5774421691895, + "msecs": 720.9022045135498, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 4609.627246856689, + "relativeCreated": 4633.209228515625, "stack_info": null, - "thread": 139631570671360, + "thread": 139622152926976, "threadName": "Thread-16" } ], - "msecs": 731.4512729644775, + "msecs": 918.6897277832031, "msg": "Send and received data by pure_json_protocol. Wildcard callback registerd for .", "name": "__tLogger__", "pathname": "src/tests/test_normal_operation.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 4807.5010776519775, + "relativeCreated": 4830.996751785278, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread", - "time_consumption": 0.19787383079528809 + "time_consumption": 0.19778752326965332 }, { "args": [ "True", "" ], - "asctime": "2020-01-29 07:23:23,731", - "created": 1580279003.7318199, + "asctime": "2020-12-21 22:33:05,919", + "created": 1608586385.919553, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -26180,8 +26240,8 @@ "True", "" ], - "asctime": "2020-01-29 07:23:23,731", - "created": 1580279003.731644, + "asctime": "2020-12-21 22:33:05,919", + "created": 1608586385.9191818, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -26191,15 +26251,15 @@ "lineno": 22, "message": "Result (Return value of send method): True ()", "module": "test", - "msecs": 731.6439151763916, + "msecs": 919.1818237304688, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 4807.693719863892, + "relativeCreated": 4831.488847732544, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -26208,8 +26268,8 @@ "True", "" ], - "asctime": "2020-01-29 07:23:23,731", - "created": 1580279003.7317486, + "asctime": "2020-12-21 22:33:05,919", + "created": 1608586385.9193654, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -26219,37 +26279,37 @@ "lineno": 26, "message": "Expectation (Return value of send method): result = True ()", "module": "test", - "msecs": 731.7485809326172, + "msecs": 919.365406036377, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 4807.798385620117, + "relativeCreated": 4831.672430038452, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" } ], - "msecs": 731.8198680877686, + "msecs": 919.5530414581299, "msg": "Return value of send method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 4807.869672775269, + "relativeCreated": 4831.860065460205, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread", - "time_consumption": 7.128715515136719e-05 + "time_consumption": 0.0001876354217529297 }, { "args": [ "0", "" ], - "asctime": "2020-01-29 07:23:23,732", - "created": 1580279003.7320352, + "asctime": "2020-12-21 22:33:05,920", + "created": 1608586385.920113, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -26266,8 +26326,8 @@ "0", "" ], - "asctime": "2020-01-29 07:23:23,731", - "created": 1580279003.7319186, + "asctime": "2020-12-21 22:33:05,919", + "created": 1608586385.9198022, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -26277,15 +26337,15 @@ "lineno": 22, "message": "Result (Request Status (Okay) transfered via pure_json_protocol): 0 ()", "module": "test", - "msecs": 731.9185733795166, + "msecs": 919.802188873291, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 4807.968378067017, + "relativeCreated": 4832.109212875366, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -26294,8 +26354,8 @@ "0", "" ], - "asctime": "2020-01-29 07:23:23,731", - "created": 1580279003.7319765, + "asctime": "2020-12-21 22:33:05,919", + "created": 1608586385.9199607, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -26305,37 +26365,37 @@ "lineno": 26, "message": "Expectation (Request Status (Okay) transfered via pure_json_protocol): result = 0 ()", "module": "test", - "msecs": 731.9765090942383, + "msecs": 919.9607372283936, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 4808.026313781738, + "relativeCreated": 4832.267761230469, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" } ], - "msecs": 732.0351600646973, + "msecs": 920.1130867004395, "msg": "Request Status (Okay) transfered via pure_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 4808.084964752197, + "relativeCreated": 4832.420110702515, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread", - "time_consumption": 5.8650970458984375e-05 + "time_consumption": 0.00015234947204589844 }, { "args": [ "{'test': 'test'}", "" ], - "asctime": "2020-01-29 07:23:23,732", - "created": 1580279003.7322457, + "asctime": "2020-12-21 22:33:05,920", + "created": 1608586385.9206898, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -26352,8 +26412,8 @@ "{ 'test': 'test' }", "" ], - "asctime": "2020-01-29 07:23:23,732", - "created": 1580279003.7321222, + "asctime": "2020-12-21 22:33:05,920", + "created": 1608586385.920348, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -26363,15 +26423,15 @@ "lineno": 22, "message": "Result (Request Data transfered via pure_json_protocol): { 'test': 'test' } ()", "module": "test", - "msecs": 732.1221828460693, + "msecs": 920.3479290008545, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 4808.171987533569, + "relativeCreated": 4832.65495300293, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -26380,8 +26440,8 @@ "{ 'test': 'test' }", "" ], - "asctime": "2020-01-29 07:23:23,732", - "created": 1580279003.7321782, + "asctime": "2020-12-21 22:33:05,920", + "created": 1608586385.9204988, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -26391,37 +26451,37 @@ "lineno": 26, "message": "Expectation (Request Data transfered via pure_json_protocol): result = { 'test': 'test' } ()", "module": "test", - "msecs": 732.1782112121582, + "msecs": 920.4988479614258, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 4808.228015899658, + "relativeCreated": 4832.805871963501, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" } ], - "msecs": 732.245683670044, + "msecs": 920.6898212432861, "msg": "Request Data transfered via pure_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 4808.295488357544, + "relativeCreated": 4832.996845245361, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread", - "time_consumption": 6.747245788574219e-05 + "time_consumption": 0.00019097328186035156 }, { "args": [ "5", "" ], - "asctime": "2020-01-29 07:23:23,732", - "created": 1580279003.7324274, + "asctime": "2020-12-21 22:33:05,921", + "created": 1608586385.9212704, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -26438,8 +26498,8 @@ "5", "" ], - "asctime": "2020-01-29 07:23:23,732", - "created": 1580279003.7323253, + "asctime": "2020-12-21 22:33:05,920", + "created": 1608586385.92099, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -26449,15 +26509,15 @@ "lineno": 22, "message": "Result (Response Status (Operation not permitted) transfered via pure_json_protocol): 5 ()", "module": "test", - "msecs": 732.3253154754639, + "msecs": 920.989990234375, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 4808.375120162964, + "relativeCreated": 4833.29701423645, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -26466,8 +26526,8 @@ "5", "" ], - "asctime": "2020-01-29 07:23:23,732", - "created": 1580279003.732379, + "asctime": "2020-12-21 22:33:05,921", + "created": 1608586385.9211338, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -26477,37 +26537,37 @@ "lineno": 26, "message": "Expectation (Response Status (Operation not permitted) transfered via pure_json_protocol): result = 5 ()", "module": "test", - "msecs": 732.3789596557617, + "msecs": 921.1337566375732, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 4808.428764343262, + "relativeCreated": 4833.440780639648, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" } ], - "msecs": 732.4273586273193, + "msecs": 921.2703704833984, "msg": "Response Status (Operation not permitted) transfered via pure_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 4808.477163314819, + "relativeCreated": 4833.577394485474, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread", - "time_consumption": 4.839897155761719e-05 + "time_consumption": 0.0001366138458251953 }, { "args": [ "[1, 3, 's']", "" ], - "asctime": "2020-01-29 07:23:23,732", - "created": 1580279003.7326276, + "asctime": "2020-12-21 22:33:05,921", + "created": 1608586385.9218447, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -26524,8 +26584,8 @@ "[ 1, 3, 's' ]", "" ], - "asctime": "2020-01-29 07:23:23,732", - "created": 1580279003.7325037, + "asctime": "2020-12-21 22:33:05,921", + "created": 1608586385.921503, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -26535,15 +26595,15 @@ "lineno": 22, "message": "Result (Response Data transfered via pure_json_protocol): [ 1, 3, 's' ] ()", "module": "test", - "msecs": 732.5036525726318, + "msecs": 921.5030670166016, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 4808.553457260132, + "relativeCreated": 4833.810091018677, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -26552,8 +26612,8 @@ "[ 1, 3, 's' ]", "" ], - "asctime": "2020-01-29 07:23:23,732", - "created": 1580279003.7325566, + "asctime": "2020-12-21 22:33:05,921", + "created": 1608586385.9216557, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -26563,37 +26623,37 @@ "lineno": 26, "message": "Expectation (Response Data transfered via pure_json_protocol): result = [ 1, 3, 's' ] ()", "module": "test", - "msecs": 732.5565814971924, + "msecs": 921.6556549072266, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 4808.606386184692, + "relativeCreated": 4833.962678909302, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" } ], - "msecs": 732.6276302337646, + "msecs": 921.8447208404541, "msg": "Response Data transfered via pure_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 4808.677434921265, + "relativeCreated": 4834.151744842529, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread", - "time_consumption": 7.104873657226562e-05 + "time_consumption": 0.00018906593322753906 }, { "args": [ "None", "" ], - "asctime": "2020-01-29 07:23:23,833", - "created": 1580279003.8334727, + "asctime": "2020-12-21 22:33:06,023", + "created": 1608586386.0230963, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -26611,26 +26671,26 @@ "11", "48879" ], - "asctime": "2020-01-29 07:23:23,832", - "created": 1580279003.8329246, + "asctime": "2020-12-21 22:33:06,022", + "created": 1608586386.0224063, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 309, + "lineno": 327, "message": "SJP: TIMEOUT (0.1s): Requested data (service_id: 11; data_id: 48879) not in buffer.", "module": "__init__", - "msecs": 832.9246044158936, + "msecs": 22.406339645385742, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 4908.974409103394, + "relativeCreated": 4934.713363647461, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -26639,8 +26699,8 @@ "None", "" ], - "asctime": "2020-01-29 07:23:23,833", - "created": 1580279003.8331742, + "asctime": "2020-12-21 22:33:06,022", + "created": 1608586386.0227187, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -26650,15 +26710,15 @@ "lineno": 22, "message": "Result (Return Value (request instance) for pure_json_protocol.receive with data data_id 0xbeef): None ()", "module": "test", - "msecs": 833.1742286682129, + "msecs": 22.71866798400879, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 4909.224033355713, + "relativeCreated": 4935.025691986084, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -26667,8 +26727,8 @@ "None", "" ], - "asctime": "2020-01-29 07:23:23,833", - "created": 1580279003.8333416, + "asctime": "2020-12-21 22:33:06,022", + "created": 1608586386.0229118, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -26678,37 +26738,37 @@ "lineno": 26, "message": "Expectation (Return Value (request instance) for pure_json_protocol.receive with data data_id 0xbeef): result = None ()", "module": "test", - "msecs": 833.3415985107422, + "msecs": 22.911787033081055, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 4909.391403198242, + "relativeCreated": 4935.218811035156, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" } ], - "msecs": 833.472728729248, + "msecs": 23.096323013305664, "msg": "Return Value (request instance) for pure_json_protocol.receive with data data_id 0xbeef is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 4909.522533416748, + "relativeCreated": 4935.403347015381, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread", - "time_consumption": 0.00013113021850585938 + "time_consumption": 0.00018453598022460938 }, { "args": [ "None", "" ], - "asctime": "2020-01-29 07:23:23,934", - "created": 1580279003.9341972, + "asctime": "2020-12-21 22:33:06,124", + "created": 1608586386.1243176, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -26726,26 +26786,26 @@ "10", "48879" ], - "asctime": "2020-01-29 07:23:23,933", - "created": 1580279003.9338646, + "asctime": "2020-12-21 22:33:06,123", + "created": 1608586386.123685, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 309, + "lineno": 327, "message": "SJP: TIMEOUT (0.1s): Requested data (service_id: 10; data_id: 48879) not in buffer.", "module": "__init__", - "msecs": 933.8645935058594, + "msecs": 123.68488311767578, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 5009.914398193359, + "relativeCreated": 5035.991907119751, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -26754,8 +26814,8 @@ "None", "" ], - "asctime": "2020-01-29 07:23:23,934", - "created": 1580279003.934045, + "asctime": "2020-12-21 22:33:06,123", + "created": 1608586386.1239984, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -26765,15 +26825,15 @@ "lineno": 22, "message": "Result (Return Value (response instance) for pure_json_protocol.receive with data data_id 0xbeef): None ()", "module": "test", - "msecs": 934.0450763702393, + "msecs": 123.99840354919434, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 5010.094881057739, + "relativeCreated": 5036.3054275512695, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -26782,8 +26842,8 @@ "None", "" ], - "asctime": "2020-01-29 07:23:23,934", - "created": 1580279003.9341245, + "asctime": "2020-12-21 22:33:06,124", + "created": 1608586386.1241646, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -26793,41 +26853,41 @@ "lineno": 26, "message": "Expectation (Return Value (response instance) for pure_json_protocol.receive with data data_id 0xbeef): result = None ()", "module": "test", - "msecs": 934.1244697570801, + "msecs": 124.16458129882812, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 5010.17427444458, + "relativeCreated": 5036.471605300903, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" } ], - "msecs": 934.197187423706, + "msecs": 124.31764602661133, "msg": "Return Value (response instance) for pure_json_protocol.receive with data data_id 0xbeef is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 5010.246992111206, + "relativeCreated": 5036.6246700286865, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread", - "time_consumption": 7.271766662597656e-05 + "time_consumption": 0.00015306472778320312 } ], - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread", - "time_consumption": 0.706132173538208, - "time_finished": "2020-01-29 07:23:23,934", - "time_start": "2020-01-29 07:23:23,228" + "time_consumption": 0.7092428207397461, + "time_finished": "2020-12-21 22:33:06,124", + "time_start": "2020-12-21 22:33:05,415" }, "socket_protocol.pure_json_protocol: Wildcard Callback registration for service_id and data_id.": { "args": null, - "asctime": "2020-01-29 07:23:21,810", - "created": 1580279001.8104987, + "asctime": "2020-12-21 22:33:03,995", + "created": 1608586383.9951317, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -26838,19 +26898,19 @@ "message": "socket_protocol.pure_json_protocol: Wildcard Callback registration for service_id and data_id.", "module": "__init__", "moduleLogger": [], - "msecs": 810.4987144470215, + "msecs": 995.1317310333252, "msg": "socket_protocol.pure_json_protocol: Wildcard Callback registration for service_id and data_id.", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 2886.5485191345215, + "relativeCreated": 2907.4387550354004, "stack_info": null, "testcaseLogger": [ { "args": [], - "asctime": "2020-01-29 07:23:22,313", - "created": 1580279002.3133092, + "asctime": "2020-12-21 22:33:04,498", + "created": 1608586384.4985282, "exc_info": null, "exc_text": null, "filename": "test_normal_operation.py", @@ -26865,104 +26925,104 @@ "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:21,810", - "created": 1580279001.810703, + "asctime": "2020-12-21 22:33:03,995", + "created": 1608586383.9954324, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 295, + "lineno": 313, "message": "SJP: Cleaning up receive-buffer", "module": "__init__", - "msecs": 810.7030391693115, + "msecs": 995.4323768615723, "msg": "%s Cleaning up receive-buffer", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 2886.7528438568115, + "relativeCreated": 2907.7394008636475, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:21,810", - "created": 1580279001.8109388, + "asctime": "2020-12-21 22:33:03,995", + "created": 1608586383.9957392, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 199, + "lineno": 217, "message": "SJP: Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "module": "__init__", - "msecs": 810.938835144043, + "msecs": 995.739221572876, "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 2886.988639831543, + "relativeCreated": 2908.046245574951, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:21,811", - "created": 1580279001.811096, + "asctime": "2020-12-21 22:33:03,995", + "created": 1608586383.9959285, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 295, + "lineno": 313, "message": "SJP: Cleaning up receive-buffer", "module": "__init__", - "msecs": 811.0959529876709, + "msecs": 995.9285259246826, "msg": "%s Cleaning up receive-buffer", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 2887.145757675171, + "relativeCreated": 2908.235549926758, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:21,811", - "created": 1580279001.81131, + "asctime": "2020-12-21 22:33:03,996", + "created": 1608586383.9962037, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 199, + "lineno": 217, "message": "SJP: Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "module": "__init__", - "msecs": 811.3100528717041, + "msecs": 996.2036609649658, "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 2887.359857559204, + "relativeCreated": 2908.510684967041, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -26973,32 +27033,32 @@ 48879, "{'test': 'test'}" ], - "asctime": "2020-01-29 07:23:21,811", - "created": 1580279001.811457, + "asctime": "2020-12-21 22:33:03,996", + "created": 1608586383.9964077, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 334, + "lineno": 352, "message": "SJP: TX -> status: 0, service_id: 10, data_id: 48879, data: \"{'test': 'test'}\"", "module": "__init__", - "msecs": 811.4569187164307, + "msecs": 996.4077472686768, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 2887.5067234039307, + "relativeCreated": 2908.714771270752, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-01-29 07:23:21,811", - "created": 1580279001.8117473, + "asctime": "2020-12-21 22:33:03,996", + "created": 1608586383.9968143, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -27008,21 +27068,21 @@ "lineno": 55, "message": "Send data: (79): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 7d cc a2 b9 e6", "module": "test_helpers", - "msecs": 811.7473125457764, + "msecs": 996.8142509460449, "msg": "Send data: (79): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 7d cc a2 b9 e6", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 2887.7971172332764, + "relativeCreated": 2909.12127494812, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-01-29 07:23:21,962", - "created": 1580279001.9625177, + "asctime": "2020-12-21 22:33:04,147", + "created": 1608586384.1475015, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -27032,15 +27092,15 @@ "lineno": 66, "message": "Receive data (79): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 7d cc a2 b9 e6", "module": "test_helpers", - "msecs": 962.5177383422852, + "msecs": 147.50146865844727, "msg": "Receive data (79): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 7d cc a2 b9 e6", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 3038.567543029785, + "relativeCreated": 3059.8084926605225, "stack_info": null, - "thread": 139631579064064, + "thread": 139622161319680, "threadName": "Thread-11" }, { @@ -27051,26 +27111,26 @@ "48879", "{'test': 'test'}" ], - "asctime": "2020-01-29 07:23:21,962", - "created": 1580279001.9629152, + "asctime": "2020-12-21 22:33:04,147", + "created": 1608586384.147894, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 247, + "lineno": 259, "message": "SJP: RX <- status: 0, service_id: 10, data_id: 48879, data: \"{'test': 'test'}\"", "module": "__init__", - "msecs": 962.9151821136475, + "msecs": 147.89390563964844, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 3038.9649868011475, + "relativeCreated": 3060.2009296417236, "stack_info": null, - "thread": 139631579064064, + "thread": 139622161319680, "threadName": "Thread-11" }, { @@ -27078,26 +27138,26 @@ "SJP:", "response_data_method" ], - "asctime": "2020-01-29 07:23:21,963", - "created": 1580279001.963139, + "asctime": "2020-12-21 22:33:04,148", + "created": 1608586384.148086, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 264, + "lineno": 282, "message": "SJP: Executing callback response_data_method to process received data", "module": "__init__", - "msecs": 963.1390571594238, + "msecs": 148.0860710144043, "msg": "%s Executing callback %s to process received data", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 3039.188861846924, + "relativeCreated": 3060.3930950164795, "stack_info": null, - "thread": 139631579064064, + "thread": 139622161319680, "threadName": "Thread-11" }, { @@ -27108,32 +27168,32 @@ 48879, "[1, 3, 's']" ], - "asctime": "2020-01-29 07:23:21,963", - "created": 1580279001.9633083, + "asctime": "2020-12-21 22:33:04,148", + "created": 1608586384.1482327, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 334, + "lineno": 352, "message": "SJP: TX -> status: 5, service_id: 11, data_id: 48879, data: \"[1, 3, 's']\"", "module": "__init__", - "msecs": 963.3083343505859, + "msecs": 148.23269844055176, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 3039.358139038086, + "relativeCreated": 3060.539722442627, "stack_info": null, - "thread": 139631579064064, + "thread": 139622161319680, "threadName": "Thread-11" }, { "args": [], - "asctime": "2020-01-29 07:23:21,963", - "created": 1580279001.963672, + "asctime": "2020-12-21 22:33:04,148", + "created": 1608586384.148552, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -27143,21 +27203,21 @@ "lineno": 55, "message": "Send data: (74): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 35 2c 20 22 64 61 74 61 22 3a 20 5b 31 2c 20 33 2c 20 22 73 22 5d 7d 7d 1e 6e 1b", "module": "test_helpers", - "msecs": 963.6719226837158, + "msecs": 148.55194091796875, "msg": "Send data: (74): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 35 2c 20 22 64 61 74 61 22 3a 20 5b 31 2c 20 33 2c 20 22 73 22 5d 7d 7d 1e 6e 1b", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 3039.721727371216, + "relativeCreated": 3060.858964920044, "stack_info": null, - "thread": 139631579064064, + "thread": 139622161319680, "threadName": "Thread-11" }, { "args": [], - "asctime": "2020-01-29 07:23:22,114", - "created": 1580279002.1144383, + "asctime": "2020-12-21 22:33:04,299", + "created": 1608586384.2995336, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -27167,15 +27227,15 @@ "lineno": 66, "message": "Receive data (74): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 35 2c 20 22 64 61 74 61 22 3a 20 5b 31 2c 20 33 2c 20 22 73 22 5d 7d 7d 1e 6e 1b", "module": "test_helpers", - "msecs": 114.43829536437988, + "msecs": 299.5336055755615, "msg": "Receive data (74): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 35 2c 20 22 64 61 74 61 22 3a 20 5b 31 2c 20 33 2c 20 22 73 22 5d 7d 7d 1e 6e 1b", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 3190.48810005188, + "relativeCreated": 3211.8406295776367, "stack_info": null, - "thread": 139631570671360, + "thread": 139622152926976, "threadName": "Thread-12" }, { @@ -27186,26 +27246,26 @@ "48879", "[1, 3, 's']" ], - "asctime": "2020-01-29 07:23:22,114", - "created": 1580279002.1146784, + "asctime": "2020-12-21 22:33:04,299", + "created": 1608586384.2999825, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 247, + "lineno": 259, "message": "SJP: RX <- status: 5, service_id: 11, data_id: 48879, data: \"[1, 3, 's']\"", "module": "__init__", - "msecs": 114.67838287353516, + "msecs": 299.98254776000977, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 3190.728187561035, + "relativeCreated": 3212.289571762085, "stack_info": null, - "thread": 139631570671360, + "thread": 139622152926976, "threadName": "Thread-12" }, { @@ -27213,74 +27273,74 @@ "SJP:", "Operation not permitted" ], - "asctime": "2020-01-29 07:23:22,114", - "created": 1580279002.1148064, + "asctime": "2020-12-21 22:33:04,300", + "created": 1608586384.3002317, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "WARNING", "levelno": 30, - "lineno": 274, + "lineno": 292, "message": "SJP: Received message has a peculiar status: Operation not permitted", "module": "__init__", - "msecs": 114.8064136505127, + "msecs": 300.2316951751709, "msg": "%s Received message has a peculiar status: %s", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 3190.8562183380127, + "relativeCreated": 3212.538719177246, "stack_info": null, - "thread": 139631570671360, + "thread": 139622152926976, "threadName": "Thread-12" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:22,114", - "created": 1580279002.114917, + "asctime": "2020-12-21 22:33:04,300", + "created": 1608586384.3004196, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 292, + "lineno": 310, "message": "SJP: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 114.91703987121582, + "msecs": 300.41956901550293, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 3190.966844558716, + "relativeCreated": 3212.726593017578, "stack_info": null, - "thread": 139631570671360, + "thread": 139622152926976, "threadName": "Thread-12" } ], - "msecs": 313.3091926574707, + "msecs": 498.52824211120605, "msg": "Send and received data by pure_json_protocol. Wildcard callback registerd for service_id and data_id.", "name": "__tLogger__", "pathname": "src/tests/test_normal_operation.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 3389.3589973449707, + "relativeCreated": 3410.8352661132812, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread", - "time_consumption": 0.19839215278625488 + "time_consumption": 0.19810867309570312 }, { "args": [ "True", "" ], - "asctime": "2020-01-29 07:23:22,314", - "created": 1580279002.314038, + "asctime": "2020-12-21 22:33:04,499", + "created": 1608586384.4993036, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -27297,8 +27357,8 @@ "True", "" ], - "asctime": "2020-01-29 07:23:22,313", - "created": 1580279002.3136857, + "asctime": "2020-12-21 22:33:04,498", + "created": 1608586384.4989696, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -27308,15 +27368,15 @@ "lineno": 22, "message": "Result (Return value of send method): True ()", "module": "test", - "msecs": 313.68565559387207, + "msecs": 498.96955490112305, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 3389.735460281372, + "relativeCreated": 3411.2765789031982, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -27325,8 +27385,8 @@ "True", "" ], - "asctime": "2020-01-29 07:23:22,313", - "created": 1580279002.313878, + "asctime": "2020-12-21 22:33:04,499", + "created": 1608586384.4991484, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -27336,37 +27396,37 @@ "lineno": 26, "message": "Expectation (Return value of send method): result = True ()", "module": "test", - "msecs": 313.87805938720703, + "msecs": 499.1483688354492, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 3389.927864074707, + "relativeCreated": 3411.4553928375244, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" } ], - "msecs": 314.0380382537842, + "msecs": 499.30357933044434, "msg": "Return value of send method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 3390.087842941284, + "relativeCreated": 3411.6106033325195, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread", - "time_consumption": 0.00015997886657714844 + "time_consumption": 0.0001552104949951172 }, { "args": [ "0", "" ], - "asctime": "2020-01-29 07:23:22,314", - "created": 1580279002.314505, + "asctime": "2020-12-21 22:33:04,499", + "created": 1608586384.49982, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -27383,8 +27443,8 @@ "0", "" ], - "asctime": "2020-01-29 07:23:22,314", - "created": 1580279002.3142412, + "asctime": "2020-12-21 22:33:04,499", + "created": 1608586384.4995372, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -27394,15 +27454,15 @@ "lineno": 22, "message": "Result (Request Status (Okay) transfered via pure_json_protocol): 0 ()", "module": "test", - "msecs": 314.2411708831787, + "msecs": 499.53722953796387, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 3390.2909755706787, + "relativeCreated": 3411.844253540039, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -27411,8 +27471,8 @@ "0", "" ], - "asctime": "2020-01-29 07:23:22,314", - "created": 1580279002.3143754, + "asctime": "2020-12-21 22:33:04,499", + "created": 1608586384.4996812, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -27422,37 +27482,37 @@ "lineno": 26, "message": "Expectation (Request Status (Okay) transfered via pure_json_protocol): result = 0 ()", "module": "test", - "msecs": 314.3754005432129, + "msecs": 499.6812343597412, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 3390.425205230713, + "relativeCreated": 3411.9882583618164, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" } ], - "msecs": 314.50510025024414, + "msecs": 499.8199939727783, "msg": "Request Status (Okay) transfered via pure_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 3390.554904937744, + "relativeCreated": 3412.1270179748535, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread", - "time_consumption": 0.00012969970703125 + "time_consumption": 0.00013875961303710938 }, { "args": [ "{'test': 'test'}", "" ], - "asctime": "2020-01-29 07:23:22,315", - "created": 1580279002.3150043, + "asctime": "2020-12-21 22:33:04,500", + "created": 1608586384.5004294, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -27469,8 +27529,8 @@ "{ 'test': 'test' }", "" ], - "asctime": "2020-01-29 07:23:22,314", - "created": 1580279002.314705, + "asctime": "2020-12-21 22:33:04,500", + "created": 1608586384.5000806, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -27480,15 +27540,15 @@ "lineno": 22, "message": "Result (Request Data transfered via pure_json_protocol): { 'test': 'test' } ()", "module": "test", - "msecs": 314.70489501953125, + "msecs": 500.0805854797363, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 3390.7546997070312, + "relativeCreated": 3412.3876094818115, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -27497,8 +27557,8 @@ "{ 'test': 'test' }", "" ], - "asctime": "2020-01-29 07:23:22,314", - "created": 1580279002.314844, + "asctime": "2020-12-21 22:33:04,500", + "created": 1608586384.5002356, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -27508,37 +27568,37 @@ "lineno": 26, "message": "Expectation (Request Data transfered via pure_json_protocol): result = { 'test': 'test' } ()", "module": "test", - "msecs": 314.84389305114746, + "msecs": 500.23555755615234, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 3390.8936977386475, + "relativeCreated": 3412.5425815582275, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" } ], - "msecs": 315.0043487548828, + "msecs": 500.4293918609619, "msg": "Request Data transfered via pure_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 3391.054153442383, + "relativeCreated": 3412.736415863037, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread", - "time_consumption": 0.00016045570373535156 + "time_consumption": 0.0001938343048095703 }, { "args": [ "5", "" ], - "asctime": "2020-01-29 07:23:22,315", - "created": 1580279002.3154802, + "asctime": "2020-12-21 22:33:04,501", + "created": 1608586384.5011675, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -27555,8 +27615,8 @@ "5", "" ], - "asctime": "2020-01-29 07:23:22,315", - "created": 1580279002.3152103, + "asctime": "2020-12-21 22:33:04,500", + "created": 1608586384.5008569, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -27566,15 +27626,15 @@ "lineno": 22, "message": "Result (Response Status (Operation not permitted) transfered via pure_json_protocol): 5 ()", "module": "test", - "msecs": 315.21034240722656, + "msecs": 500.856876373291, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 3391.2601470947266, + "relativeCreated": 3413.163900375366, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -27583,8 +27643,8 @@ "5", "" ], - "asctime": "2020-01-29 07:23:22,315", - "created": 1580279002.315352, + "asctime": "2020-12-21 22:33:04,501", + "created": 1608586384.5010262, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -27594,37 +27654,37 @@ "lineno": 26, "message": "Expectation (Response Status (Operation not permitted) transfered via pure_json_protocol): result = 5 ()", "module": "test", - "msecs": 315.3519630432129, + "msecs": 501.0261535644531, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 3391.401767730713, + "relativeCreated": 3413.3331775665283, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" } ], - "msecs": 315.48023223876953, + "msecs": 501.16753578186035, "msg": "Response Status (Operation not permitted) transfered via pure_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 3391.5300369262695, + "relativeCreated": 3413.4745597839355, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread", - "time_consumption": 0.00012826919555664062 + "time_consumption": 0.00014138221740722656 }, { "args": [ "[1, 3, 's']", "" ], - "asctime": "2020-01-29 07:23:22,315", - "created": 1580279002.3159966, + "asctime": "2020-12-21 22:33:04,501", + "created": 1608586384.501764, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -27641,8 +27701,8 @@ "[ 1, 3, 's' ]", "" ], - "asctime": "2020-01-29 07:23:22,315", - "created": 1580279002.315684, + "asctime": "2020-12-21 22:33:04,501", + "created": 1608586384.5014064, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -27652,15 +27712,15 @@ "lineno": 22, "message": "Result (Response Data transfered via pure_json_protocol): [ 1, 3, 's' ] ()", "module": "test", - "msecs": 315.68408012390137, + "msecs": 501.4064311981201, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 3391.7338848114014, + "relativeCreated": 3413.7134552001953, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -27669,8 +27729,8 @@ "[ 1, 3, 's' ]", "" ], - "asctime": "2020-01-29 07:23:22,315", - "created": 1580279002.3158214, + "asctime": "2020-12-21 22:33:04,501", + "created": 1608586384.5015607, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -27680,37 +27740,37 @@ "lineno": 26, "message": "Expectation (Response Data transfered via pure_json_protocol): result = [ 1, 3, 's' ] ()", "module": "test", - "msecs": 315.82140922546387, + "msecs": 501.5606880187988, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 3391.871213912964, + "relativeCreated": 3413.867712020874, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" } ], - "msecs": 315.9966468811035, + "msecs": 501.76405906677246, "msg": "Response Data transfered via pure_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 3392.0464515686035, + "relativeCreated": 3414.0710830688477, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread", - "time_consumption": 0.00017523765563964844 + "time_consumption": 0.0002033710479736328 }, { "args": [ "None", "" ], - "asctime": "2020-01-29 07:23:22,416", - "created": 1580279002.4167564, + "asctime": "2020-12-21 22:33:04,603", + "created": 1608586384.6032321, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -27728,26 +27788,26 @@ "11", "48879" ], - "asctime": "2020-01-29 07:23:22,416", - "created": 1580279002.4164038, + "asctime": "2020-12-21 22:33:04,602", + "created": 1608586384.6023703, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 309, + "lineno": 327, "message": "SJP: TIMEOUT (0.1s): Requested data (service_id: 11; data_id: 48879) not in buffer.", "module": "__init__", - "msecs": 416.40377044677734, + "msecs": 602.3702621459961, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 3492.4535751342773, + "relativeCreated": 3514.6772861480713, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -27756,8 +27816,8 @@ "None", "" ], - "asctime": "2020-01-29 07:23:22,416", - "created": 1580279002.4165852, + "asctime": "2020-12-21 22:33:04,602", + "created": 1608586384.6028464, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -27767,15 +27827,15 @@ "lineno": 22, "message": "Result (Return Value (request instance) for pure_json_protocol.receive with data data_id 0xbeef): None ()", "module": "test", - "msecs": 416.58520698547363, + "msecs": 602.8463840484619, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 3492.6350116729736, + "relativeCreated": 3515.153408050537, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -27784,8 +27844,8 @@ "None", "" ], - "asctime": "2020-01-29 07:23:22,416", - "created": 1580279002.4166727, + "asctime": "2020-12-21 22:33:04,603", + "created": 1608586384.6030533, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -27795,37 +27855,37 @@ "lineno": 26, "message": "Expectation (Return Value (request instance) for pure_json_protocol.receive with data data_id 0xbeef): result = None ()", "module": "test", - "msecs": 416.6727066040039, + "msecs": 603.0533313751221, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 3492.722511291504, + "relativeCreated": 3515.3603553771973, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" } ], - "msecs": 416.75639152526855, + "msecs": 603.2321453094482, "msg": "Return Value (request instance) for pure_json_protocol.receive with data data_id 0xbeef is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 3492.8061962127686, + "relativeCreated": 3515.5391693115234, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread", - "time_consumption": 8.368492126464844e-05 + "time_consumption": 0.00017881393432617188 }, { "args": [ "None", "" ], - "asctime": "2020-01-29 07:23:22,518", - "created": 1580279002.51819, + "asctime": "2020-12-21 22:33:04,704", + "created": 1608586384.7044988, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -27843,26 +27903,26 @@ "10", "48879" ], - "asctime": "2020-01-29 07:23:22,517", - "created": 1580279002.5171769, + "asctime": "2020-12-21 22:33:04,703", + "created": 1608586384.703822, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 309, + "lineno": 327, "message": "SJP: TIMEOUT (0.1s): Requested data (service_id: 10; data_id: 48879) not in buffer.", "module": "__init__", - "msecs": 517.1768665313721, + "msecs": 703.8218975067139, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 3593.226671218872, + "relativeCreated": 3616.128921508789, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -27871,8 +27931,8 @@ "None", "" ], - "asctime": "2020-01-29 07:23:22,517", - "created": 1580279002.5176127, + "asctime": "2020-12-21 22:33:04,704", + "created": 1608586384.704132, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -27882,15 +27942,15 @@ "lineno": 22, "message": "Result (Return Value (response instance) for pure_json_protocol.receive with data data_id 0xbeef): None ()", "module": "test", - "msecs": 517.6126956939697, + "msecs": 704.132080078125, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 3593.6625003814697, + "relativeCreated": 3616.4391040802, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -27899,8 +27959,8 @@ "None", "" ], - "asctime": "2020-01-29 07:23:22,517", - "created": 1580279002.5179143, + "asctime": "2020-12-21 22:33:04,704", + "created": 1608586384.7043417, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -27910,41 +27970,41 @@ "lineno": 26, "message": "Expectation (Return Value (response instance) for pure_json_protocol.receive with data data_id 0xbeef): result = None ()", "module": "test", - "msecs": 517.9142951965332, + "msecs": 704.3416500091553, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 3593.964099884033, + "relativeCreated": 3616.6486740112305, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" } ], - "msecs": 518.1899070739746, + "msecs": 704.4987678527832, "msg": "Return Value (response instance) for pure_json_protocol.receive with data data_id 0xbeef is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 3594.2397117614746, + "relativeCreated": 3616.8057918548584, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread", - "time_consumption": 0.00027561187744140625 + "time_consumption": 0.0001571178436279297 } ], - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread", - "time_consumption": 0.7076911926269531, - "time_finished": "2020-01-29 07:23:22,518", - "time_start": "2020-01-29 07:23:21,810" + "time_consumption": 0.709367036819458, + "time_finished": "2020-12-21 22:33:04,704", + "time_start": "2020-12-21 22:33:03,995" }, "socket_protocol.pure_json_protocol: Wildcard Callback registration for service_id.": { "args": null, - "asctime": "2020-01-29 07:23:22,518", - "created": 1580279002.5189092, + "asctime": "2020-12-21 22:33:04,705", + "created": 1608586384.7050614, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -27955,19 +28015,19 @@ "message": "socket_protocol.pure_json_protocol: Wildcard Callback registration for service_id.", "module": "__init__", "moduleLogger": [], - "msecs": 518.909215927124, + "msecs": 705.0614356994629, "msg": "socket_protocol.pure_json_protocol: Wildcard Callback registration for service_id.", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 3594.959020614624, + "relativeCreated": 3617.368459701538, "stack_info": null, "testcaseLogger": [ { "args": [], - "asctime": "2020-01-29 07:23:23,023", - "created": 1580279003.0234334, + "asctime": "2020-12-21 22:33:05,209", + "created": 1608586385.209028, "exc_info": null, "exc_text": null, "filename": "test_normal_operation.py", @@ -27982,104 +28042,104 @@ "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:22,519", - "created": 1580279002.51928, + "asctime": "2020-12-21 22:33:04,705", + "created": 1608586384.705363, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 295, + "lineno": 313, "message": "SJP: Cleaning up receive-buffer", "module": "__init__", - "msecs": 519.279956817627, + "msecs": 705.3630352020264, "msg": "%s Cleaning up receive-buffer", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 3595.329761505127, + "relativeCreated": 3617.6700592041016, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:22,519", - "created": 1580279002.5196564, + "asctime": "2020-12-21 22:33:04,705", + "created": 1608586384.7056727, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 199, + "lineno": 217, "message": "SJP: Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "module": "__init__", - "msecs": 519.6564197540283, + "msecs": 705.6727409362793, "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 3595.7062244415283, + "relativeCreated": 3617.9797649383545, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:22,519", - "created": 1580279002.51989, + "asctime": "2020-12-21 22:33:04,705", + "created": 1608586384.7058542, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 295, + "lineno": 313, "message": "SJP: Cleaning up receive-buffer", "module": "__init__", - "msecs": 519.8900699615479, + "msecs": 705.8541774749756, "msg": "%s Cleaning up receive-buffer", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 3595.939874649048, + "relativeCreated": 3618.161201477051, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:22,520", - "created": 1580279002.520313, + "asctime": "2020-12-21 22:33:04,706", + "created": 1608586384.7061257, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 199, + "lineno": 217, "message": "SJP: Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "module": "__init__", - "msecs": 520.313024520874, + "msecs": 706.1257362365723, "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 3596.362829208374, + "relativeCreated": 3618.4327602386475, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -28090,32 +28150,32 @@ 48879, "{'test': 'test'}" ], - "asctime": "2020-01-29 07:23:22,520", - "created": 1580279002.520597, + "asctime": "2020-12-21 22:33:04,706", + "created": 1608586384.7063382, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 334, + "lineno": 352, "message": "SJP: TX -> status: 0, service_id: 10, data_id: 48879, data: \"{'test': 'test'}\"", "module": "__init__", - "msecs": 520.596981048584, + "msecs": 706.3381671905518, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 3596.646785736084, + "relativeCreated": 3618.645191192627, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-01-29 07:23:22,521", - "created": 1580279002.521114, + "asctime": "2020-12-21 22:33:04,706", + "created": 1608586384.70677, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -28125,21 +28185,21 @@ "lineno": 55, "message": "Send data: (79): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 7d cc a2 b9 e6", "module": "test_helpers", - "msecs": 521.1141109466553, + "msecs": 706.7699432373047, "msg": "Send data: (79): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 7d cc a2 b9 e6", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 3597.1639156341553, + "relativeCreated": 3619.07696723938, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-01-29 07:23:22,672", - "created": 1580279002.6725967, + "asctime": "2020-12-21 22:33:04,858", + "created": 1608586384.858055, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -28149,15 +28209,15 @@ "lineno": 66, "message": "Receive data (79): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 7d cc a2 b9 e6", "module": "test_helpers", - "msecs": 672.5966930389404, + "msecs": 858.0551147460938, "msg": "Receive data (79): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 30 2c 20 22 73 74 61 74 75 73 22 3a 20 30 2c 20 22 64 61 74 61 22 3a 20 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 7d cc a2 b9 e6", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 3748.6464977264404, + "relativeCreated": 3770.362138748169, "stack_info": null, - "thread": 139631570671360, + "thread": 139622152926976, "threadName": "Thread-13" }, { @@ -28168,26 +28228,26 @@ "48879", "{'test': 'test'}" ], - "asctime": "2020-01-29 07:23:22,672", - "created": 1580279002.6729984, + "asctime": "2020-12-21 22:33:04,858", + "created": 1608586384.8585277, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 247, + "lineno": 259, "message": "SJP: RX <- status: 0, service_id: 10, data_id: 48879, data: \"{'test': 'test'}\"", "module": "__init__", - "msecs": 672.9984283447266, + "msecs": 858.527660369873, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 3749.0482330322266, + "relativeCreated": 3770.8346843719482, "stack_info": null, - "thread": 139631570671360, + "thread": 139622152926976, "threadName": "Thread-13" }, { @@ -28195,26 +28255,26 @@ "SJP:", "response_data_method" ], - "asctime": "2020-01-29 07:23:22,673", - "created": 1580279002.6732345, + "asctime": "2020-12-21 22:33:04,858", + "created": 1608586384.8587494, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 264, + "lineno": 282, "message": "SJP: Executing callback response_data_method to process received data", "module": "__init__", - "msecs": 673.2344627380371, + "msecs": 858.7493896484375, "msg": "%s Executing callback %s to process received data", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 3749.284267425537, + "relativeCreated": 3771.0564136505127, "stack_info": null, - "thread": 139631570671360, + "thread": 139622152926976, "threadName": "Thread-13" }, { @@ -28225,32 +28285,32 @@ 48879, "[1, 3, 's']" ], - "asctime": "2020-01-29 07:23:22,673", - "created": 1580279002.6734316, + "asctime": "2020-12-21 22:33:04,858", + "created": 1608586384.8589337, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 334, + "lineno": 352, "message": "SJP: TX -> status: 5, service_id: 11, data_id: 48879, data: \"[1, 3, 's']\"", "module": "__init__", - "msecs": 673.4316349029541, + "msecs": 858.933687210083, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 3749.481439590454, + "relativeCreated": 3771.240711212158, "stack_info": null, - "thread": 139631570671360, + "thread": 139622152926976, "threadName": "Thread-13" }, { "args": [], - "asctime": "2020-01-29 07:23:22,673", - "created": 1580279002.6738043, + "asctime": "2020-12-21 22:33:04,859", + "created": 1608586384.8593235, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -28260,21 +28320,21 @@ "lineno": 55, "message": "Send data: (74): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 35 2c 20 22 64 61 74 61 22 3a 20 5b 31 2c 20 33 2c 20 22 73 22 5d 7d 7d 1e 6e 1b", "module": "test_helpers", - "msecs": 673.8042831420898, + "msecs": 859.3235015869141, "msg": "Send data: (74): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 35 2c 20 22 64 61 74 61 22 3a 20 5b 31 2c 20 33 2c 20 22 73 22 5d 7d 7d 1e 6e 1b", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 3749.85408782959, + "relativeCreated": 3771.6305255889893, "stack_info": null, - "thread": 139631570671360, + "thread": 139622152926976, "threadName": "Thread-13" }, { "args": [], - "asctime": "2020-01-29 07:23:22,824", - "created": 1580279002.824676, + "asctime": "2020-12-21 22:33:05,010", + "created": 1608586385.010317, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -28284,15 +28344,15 @@ "lineno": 66, "message": "Receive data (74): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 35 2c 20 22 64 61 74 61 22 3a 20 5b 31 2c 20 33 2c 20 22 73 22 5d 7d 7d 1e 6e 1b", "module": "test_helpers", - "msecs": 824.6760368347168, + "msecs": 10.317087173461914, "msg": "Receive data (74): 7b 22 64 61 74 61 5f 69 64 22 3a 20 34 38 38 37 39 2c 20 22 73 65 72 76 69 63 65 5f 69 64 22 3a 20 31 31 2c 20 22 73 74 61 74 75 73 22 3a 20 35 2c 20 22 64 61 74 61 22 3a 20 5b 31 2c 20 33 2c 20 22 73 22 5d 7d 7d 1e 6e 1b", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 3900.725841522217, + "relativeCreated": 3922.624111175537, "stack_info": null, - "thread": 139631579064064, + "thread": 139622161319680, "threadName": "Thread-14" }, { @@ -28303,26 +28363,26 @@ "48879", "[1, 3, 's']" ], - "asctime": "2020-01-29 07:23:22,825", - "created": 1580279002.8250754, + "asctime": "2020-12-21 22:33:05,010", + "created": 1608586385.010739, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 247, + "lineno": 259, "message": "SJP: RX <- status: 5, service_id: 11, data_id: 48879, data: \"[1, 3, 's']\"", "module": "__init__", - "msecs": 825.0753879547119, + "msecs": 10.73908805847168, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 3901.125192642212, + "relativeCreated": 3923.046112060547, "stack_info": null, - "thread": 139631579064064, + "thread": 139622161319680, "threadName": "Thread-14" }, { @@ -28330,74 +28390,74 @@ "SJP:", "Operation not permitted" ], - "asctime": "2020-01-29 07:23:22,825", - "created": 1580279002.8253841, + "asctime": "2020-12-21 22:33:05,010", + "created": 1608586385.0109746, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "WARNING", "levelno": 30, - "lineno": 274, + "lineno": 292, "message": "SJP: Received message has a peculiar status: Operation not permitted", "module": "__init__", - "msecs": 825.3841400146484, + "msecs": 10.974645614624023, "msg": "%s Received message has a peculiar status: %s", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 3901.4339447021484, + "relativeCreated": 3923.281669616699, "stack_info": null, - "thread": 139631579064064, + "thread": 139622161319680, "threadName": "Thread-14" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:22,825", - "created": 1580279002.8255818, + "asctime": "2020-12-21 22:33:05,011", + "created": 1608586385.0111573, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 292, + "lineno": 310, "message": "SJP: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 825.5817890167236, + "msecs": 11.15727424621582, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 3901.6315937042236, + "relativeCreated": 3923.464298248291, "stack_info": null, - "thread": 139631579064064, + "thread": 139622161319680, "threadName": "Thread-14" } ], - "msecs": 23.433446884155273, + "msecs": 209.0280055999756, "msg": "Send and received data by pure_json_protocol. Wildcard callback registerd for service_id.", "name": "__tLogger__", "pathname": "src/tests/test_normal_operation.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 4099.483251571655, + "relativeCreated": 4121.335029602051, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread", - "time_consumption": 0.19785165786743164 + "time_consumption": 0.19787073135375977 }, { "args": [ "True", "" ], - "asctime": "2020-01-29 07:23:23,023", - "created": 1580279003.0239866, + "asctime": "2020-12-21 22:33:05,209", + "created": 1608586385.209863, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -28414,8 +28474,8 @@ "True", "" ], - "asctime": "2020-01-29 07:23:23,023", - "created": 1580279003.0237167, + "asctime": "2020-12-21 22:33:05,209", + "created": 1608586385.2094898, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -28425,15 +28485,15 @@ "lineno": 22, "message": "Result (Return value of send method): True ()", "module": "test", - "msecs": 23.71668815612793, + "msecs": 209.4898223876953, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 4099.766492843628, + "relativeCreated": 4121.7968463897705, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -28442,8 +28502,8 @@ "True", "" ], - "asctime": "2020-01-29 07:23:23,023", - "created": 1580279003.0238562, + "asctime": "2020-12-21 22:33:05,209", + "created": 1608586385.209697, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -28453,37 +28513,37 @@ "lineno": 26, "message": "Expectation (Return value of send method): result = True ()", "module": "test", - "msecs": 23.856163024902344, + "msecs": 209.69700813293457, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 4099.905967712402, + "relativeCreated": 4122.00403213501, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" } ], - "msecs": 23.9865779876709, + "msecs": 209.86294746398926, "msg": "Return value of send method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 4100.036382675171, + "relativeCreated": 4122.169971466064, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread", - "time_consumption": 0.0001304149627685547 + "time_consumption": 0.0001659393310546875 }, { "args": [ "0", "" ], - "asctime": "2020-01-29 07:23:23,024", - "created": 1580279003.0243437, + "asctime": "2020-12-21 22:33:05,210", + "created": 1608586385.2103958, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -28500,8 +28560,8 @@ "0", "" ], - "asctime": "2020-01-29 07:23:23,024", - "created": 1580279003.0241416, + "asctime": "2020-12-21 22:33:05,210", + "created": 1608586385.210099, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -28511,15 +28571,15 @@ "lineno": 22, "message": "Result (Request Status (Okay) transfered via pure_json_protocol): 0 ()", "module": "test", - "msecs": 24.141550064086914, + "msecs": 210.0989818572998, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 4100.191354751587, + "relativeCreated": 4122.406005859375, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -28528,8 +28588,8 @@ "0", "" ], - "asctime": "2020-01-29 07:23:23,024", - "created": 1580279003.0242486, + "asctime": "2020-12-21 22:33:05,210", + "created": 1608586385.2102447, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -28539,37 +28599,37 @@ "lineno": 26, "message": "Expectation (Request Status (Okay) transfered via pure_json_protocol): result = 0 ()", "module": "test", - "msecs": 24.248600006103516, + "msecs": 210.24465560913086, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 4100.2984046936035, + "relativeCreated": 4122.551679611206, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" } ], - "msecs": 24.34372901916504, + "msecs": 210.39581298828125, "msg": "Request Status (Okay) transfered via pure_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 4100.393533706665, + "relativeCreated": 4122.702836990356, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread", - "time_consumption": 9.512901306152344e-05 + "time_consumption": 0.00015115737915039062 }, { "args": [ "{'test': 'test'}", "" ], - "asctime": "2020-01-29 07:23:23,024", - "created": 1580279003.0246987, + "asctime": "2020-12-21 22:33:05,210", + "created": 1608586385.2109714, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -28586,8 +28646,8 @@ "{ 'test': 'test' }", "" ], - "asctime": "2020-01-29 07:23:23,024", - "created": 1580279003.024486, + "asctime": "2020-12-21 22:33:05,210", + "created": 1608586385.2106342, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -28597,15 +28657,15 @@ "lineno": 22, "message": "Result (Request Data transfered via pure_json_protocol): { 'test': 'test' } ()", "module": "test", - "msecs": 24.486064910888672, + "msecs": 210.6342315673828, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 4100.535869598389, + "relativeCreated": 4122.941255569458, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -28614,8 +28674,8 @@ "{ 'test': 'test' }", "" ], - "asctime": "2020-01-29 07:23:23,024", - "created": 1580279003.0245855, + "asctime": "2020-12-21 22:33:05,210", + "created": 1608586385.2107842, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -28625,37 +28685,37 @@ "lineno": 26, "message": "Expectation (Request Data transfered via pure_json_protocol): result = { 'test': 'test' } ()", "module": "test", - "msecs": 24.585485458374023, + "msecs": 210.7841968536377, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 4100.635290145874, + "relativeCreated": 4123.091220855713, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" } ], - "msecs": 24.698734283447266, + "msecs": 210.97135543823242, "msg": "Request Data transfered via pure_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 4100.748538970947, + "relativeCreated": 4123.278379440308, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread", - "time_consumption": 0.00011324882507324219 + "time_consumption": 0.00018715858459472656 }, { "args": [ "5", "" ], - "asctime": "2020-01-29 07:23:23,025", - "created": 1580279003.0250015, + "asctime": "2020-12-21 22:33:05,211", + "created": 1608586385.2114906, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -28672,8 +28732,8 @@ "5", "" ], - "asctime": "2020-01-29 07:23:23,024", - "created": 1580279003.02483, + "asctime": "2020-12-21 22:33:05,211", + "created": 1608586385.2112021, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -28683,15 +28743,15 @@ "lineno": 22, "message": "Result (Response Status (Operation not permitted) transfered via pure_json_protocol): 5 ()", "module": "test", - "msecs": 24.830102920532227, + "msecs": 211.20214462280273, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 4100.879907608032, + "relativeCreated": 4123.509168624878, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -28700,8 +28760,8 @@ "5", "" ], - "asctime": "2020-01-29 07:23:23,024", - "created": 1580279003.0249164, + "asctime": "2020-12-21 22:33:05,211", + "created": 1608586385.211354, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -28711,37 +28771,37 @@ "lineno": 26, "message": "Expectation (Response Status (Operation not permitted) transfered via pure_json_protocol): result = 5 ()", "module": "test", - "msecs": 24.916410446166992, + "msecs": 211.35401725769043, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 4100.966215133667, + "relativeCreated": 4123.661041259766, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" } ], - "msecs": 25.00152587890625, + "msecs": 211.49063110351562, "msg": "Response Status (Operation not permitted) transfered via pure_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 4101.051330566406, + "relativeCreated": 4123.797655105591, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread", - "time_consumption": 8.511543273925781e-05 + "time_consumption": 0.0001366138458251953 }, { "args": [ "[1, 3, 's']", "" ], - "asctime": "2020-01-29 07:23:23,025", - "created": 1580279003.0253868, + "asctime": "2020-12-21 22:33:05,212", + "created": 1608586385.2120965, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -28758,8 +28818,8 @@ "[ 1, 3, 's' ]", "" ], - "asctime": "2020-01-29 07:23:23,025", - "created": 1580279003.02515, + "asctime": "2020-12-21 22:33:05,211", + "created": 1608586385.211722, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -28769,15 +28829,15 @@ "lineno": 22, "message": "Result (Response Data transfered via pure_json_protocol): [ 1, 3, 's' ] ()", "module": "test", - "msecs": 25.150060653686523, + "msecs": 211.72189712524414, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 4101.1998653411865, + "relativeCreated": 4124.028921127319, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -28786,8 +28846,8 @@ "[ 1, 3, 's' ]", "" ], - "asctime": "2020-01-29 07:23:23,025", - "created": 1580279003.025263, + "asctime": "2020-12-21 22:33:05,211", + "created": 1608586385.2118938, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -28797,37 +28857,37 @@ "lineno": 26, "message": "Expectation (Response Data transfered via pure_json_protocol): result = [ 1, 3, 's' ] ()", "module": "test", - "msecs": 25.263071060180664, + "msecs": 211.89379692077637, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 4101.312875747681, + "relativeCreated": 4124.200820922852, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" } ], - "msecs": 25.386810302734375, + "msecs": 212.0964527130127, "msg": "Response Data transfered via pure_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 4101.436614990234, + "relativeCreated": 4124.403476715088, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread", - "time_consumption": 0.00012373924255371094 + "time_consumption": 0.00020265579223632812 }, { "args": [ "None", "" ], - "asctime": "2020-01-29 07:23:23,126", - "created": 1580279003.1263518, + "asctime": "2020-12-21 22:33:05,313", + "created": 1608586385.3133028, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -28845,26 +28905,26 @@ "11", "48879" ], - "asctime": "2020-01-29 07:23:23,125", - "created": 1580279003.125739, + "asctime": "2020-12-21 22:33:05,312", + "created": 1608586385.3126025, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 309, + "lineno": 327, "message": "SJP: TIMEOUT (0.1s): Requested data (service_id: 11; data_id: 48879) not in buffer.", "module": "__init__", - "msecs": 125.73909759521484, + "msecs": 312.6025199890137, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 4201.788902282715, + "relativeCreated": 4224.909543991089, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -28873,8 +28933,8 @@ "None", "" ], - "asctime": "2020-01-29 07:23:23,126", - "created": 1580279003.1260066, + "asctime": "2020-12-21 22:33:05,312", + "created": 1608586385.3129513, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -28884,15 +28944,15 @@ "lineno": 22, "message": "Result (Return Value (request instance) for pure_json_protocol.receive with data data_id 0xbeef): None ()", "module": "test", - "msecs": 126.0066032409668, + "msecs": 312.95132637023926, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 4202.056407928467, + "relativeCreated": 4225.258350372314, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -28901,8 +28961,8 @@ "None", "" ], - "asctime": "2020-01-29 07:23:23,126", - "created": 1580279003.1261907, + "asctime": "2020-12-21 22:33:05,313", + "created": 1608586385.313143, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -28912,37 +28972,37 @@ "lineno": 26, "message": "Expectation (Return Value (request instance) for pure_json_protocol.receive with data data_id 0xbeef): result = None ()", "module": "test", - "msecs": 126.1906623840332, + "msecs": 313.1430149078369, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 4202.240467071533, + "relativeCreated": 4225.450038909912, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" } ], - "msecs": 126.35183334350586, + "msecs": 313.30275535583496, "msg": "Return Value (request instance) for pure_json_protocol.receive with data data_id 0xbeef is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 4202.401638031006, + "relativeCreated": 4225.60977935791, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread", - "time_consumption": 0.00016117095947265625 + "time_consumption": 0.00015974044799804688 }, { "args": [ "None", "" ], - "asctime": "2020-01-29 07:23:23,227", - "created": 1580279003.227596, + "asctime": "2020-12-21 22:33:05,414", + "created": 1608586385.4145482, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -28960,26 +29020,26 @@ "10", "48879" ], - "asctime": "2020-01-29 07:23:23,226", - "created": 1580279003.226849, + "asctime": "2020-12-21 22:33:05,413", + "created": 1608586385.4138753, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 309, + "lineno": 327, "message": "SJP: TIMEOUT (0.1s): Requested data (service_id: 10; data_id: 48879) not in buffer.", "module": "__init__", - "msecs": 226.84907913208008, + "msecs": 413.8753414154053, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 4302.89888381958, + "relativeCreated": 4326.1823654174805, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -28988,8 +29048,8 @@ "None", "" ], - "asctime": "2020-01-29 07:23:23,227", - "created": 1580279003.2271407, + "asctime": "2020-12-21 22:33:05,414", + "created": 1608586385.4142218, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -28999,15 +29059,15 @@ "lineno": 22, "message": "Result (Return Value (response instance) for pure_json_protocol.receive with data data_id 0xbeef): None ()", "module": "test", - "msecs": 227.1406650543213, + "msecs": 414.22176361083984, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 4303.190469741821, + "relativeCreated": 4326.528787612915, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -29016,8 +29076,8 @@ "None", "" ], - "asctime": "2020-01-29 07:23:23,227", - "created": 1580279003.227395, + "asctime": "2020-12-21 22:33:05,414", + "created": 1608586385.414392, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -29027,41 +29087,41 @@ "lineno": 26, "message": "Expectation (Return Value (response instance) for pure_json_protocol.receive with data data_id 0xbeef): result = None ()", "module": "test", - "msecs": 227.39505767822266, + "msecs": 414.39199447631836, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 4303.444862365723, + "relativeCreated": 4326.699018478394, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" } ], - "msecs": 227.59604454040527, + "msecs": 414.5481586456299, "msg": "Return Value (response instance) for pure_json_protocol.receive with data data_id 0xbeef is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 4303.645849227905, + "relativeCreated": 4326.855182647705, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread", - "time_consumption": 0.0002009868621826172 + "time_consumption": 0.00015616416931152344 } ], - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread", - "time_consumption": 0.7086868286132812, - "time_finished": "2020-01-29 07:23:23,227", - "time_start": "2020-01-29 07:23:22,518" + "time_consumption": 0.709486722946167, + "time_finished": "2020-12-21 22:33:05,414", + "time_start": "2020-12-21 22:33:04,705" }, "socket_protocol.struct_json_protocol: Send and receive check (Twice for coverage of buffer initialisation).": { "args": null, - "asctime": "2020-01-29 07:23:24,640", - "created": 1580279004.6401389, + "asctime": "2020-12-21 22:33:06,835", + "created": 1608586386.8350804, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -29072,19 +29132,19 @@ "message": "socket_protocol.struct_json_protocol: Send and receive check (Twice for coverage of buffer initialisation).", "module": "__init__", "moduleLogger": [], - "msecs": 640.1388645172119, + "msecs": 835.0803852081299, "msg": "socket_protocol.struct_json_protocol: Send and receive check (Twice for coverage of buffer initialisation).", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 5716.188669204712, + "relativeCreated": 5747.387409210205, "stack_info": null, "testcaseLogger": [ { "args": [], - "asctime": "2020-01-29 07:23:25,644", - "created": 1580279005.6447406, + "asctime": "2020-12-21 22:33:07,841", + "created": 1608586387.8413422, "exc_info": null, "exc_text": null, "filename": "test_normal_operation.py", @@ -29099,104 +29159,104 @@ "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:24,640", - "created": 1580279004.6403587, + "asctime": "2020-12-21 22:33:06,835", + "created": 1608586386.8353722, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 295, + "lineno": 313, "message": "SJP: Cleaning up receive-buffer", "module": "__init__", - "msecs": 640.3586864471436, + "msecs": 835.3722095489502, "msg": "%s Cleaning up receive-buffer", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 5716.408491134644, + "relativeCreated": 5747.679233551025, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:24,640", - "created": 1580279004.6406395, + "asctime": "2020-12-21 22:33:06,835", + "created": 1608586386.835683, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 199, + "lineno": 217, "message": "SJP: Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "module": "__init__", - "msecs": 640.6395435333252, + "msecs": 835.6831073760986, "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 5716.689348220825, + "relativeCreated": 5747.990131378174, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:24,640", - "created": 1580279004.6407952, + "asctime": "2020-12-21 22:33:06,835", + "created": 1608586386.8359346, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 295, + "lineno": 313, "message": "SJP: Cleaning up receive-buffer", "module": "__init__", - "msecs": 640.7952308654785, + "msecs": 835.9346389770508, "msg": "%s Cleaning up receive-buffer", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 5716.8450355529785, + "relativeCreated": 5748.241662979126, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:24,641", - "created": 1580279004.6410213, + "asctime": "2020-12-21 22:33:06,836", + "created": 1608586386.8362856, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 199, + "lineno": 217, "message": "SJP: Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "module": "__init__", - "msecs": 641.0212516784668, + "msecs": 836.2855911254883, "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 5717.071056365967, + "relativeCreated": 5748.5926151275635, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -29207,32 +29267,32 @@ 45054, "{'test': 'test'}" ], - "asctime": "2020-01-29 07:23:24,641", - "created": 1580279004.6411972, + "asctime": "2020-12-21 22:33:06,836", + "created": 1608586386.8365014, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 334, + "lineno": 352, "message": "SJP: TX -> status: 0, service_id: 10, data_id: 45054, data: \"{'test': 'test'}\"", "module": "__init__", - "msecs": 641.1972045898438, + "msecs": 836.5013599395752, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 5717.247009277344, + "relativeCreated": 5748.80838394165, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-01-29 07:23:24,641", - "created": 1580279004.6415253, + "asctime": "2020-12-21 22:33:06,836", + "created": 1608586386.8369067, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -29242,21 +29302,21 @@ "lineno": 55, "message": "Send data: (29): 00 00 00 00 00 00 00 0a 00 00 af fe 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 47", "module": "test_helpers", - "msecs": 641.5252685546875, + "msecs": 836.9066715240479, "msg": "Send data: (29): 00 00 00 00 00 00 00 0a 00 00 af fe 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 47", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 5717.5750732421875, + "relativeCreated": 5749.213695526123, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-01-29 07:23:24,792", - "created": 1580279004.7921965, + "asctime": "2020-12-21 22:33:06,987", + "created": 1608586386.987849, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -29266,15 +29326,15 @@ "lineno": 66, "message": "Receive data (29): 00 00 00 00 00 00 00 0a 00 00 af fe 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 47", "module": "test_helpers", - "msecs": 792.19651222229, + "msecs": 987.8489971160889, "msg": "Receive data (29): 00 00 00 00 00 00 00 0a 00 00 af fe 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 47", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 5868.24631690979, + "relativeCreated": 5900.156021118164, "stack_info": null, - "thread": 139631579064064, + "thread": 139622161319680, "threadName": "Thread-19" }, { @@ -29285,26 +29345,26 @@ "45054", "{'test': 'test'}" ], - "asctime": "2020-01-29 07:23:24,792", - "created": 1580279004.792549, + "asctime": "2020-12-21 22:33:06,988", + "created": 1608586386.9883378, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 247, + "lineno": 259, "message": "SJP: RX <- status: 0, service_id: 10, data_id: 45054, data: \"{'test': 'test'}\"", "module": "__init__", - "msecs": 792.5488948822021, + "msecs": 988.3377552032471, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 5868.598699569702, + "relativeCreated": 5900.644779205322, "stack_info": null, - "thread": 139631579064064, + "thread": 139622161319680, "threadName": "Thread-19" }, { @@ -29312,26 +29372,26 @@ "SJP:", "response_data_method" ], - "asctime": "2020-01-29 07:23:24,792", - "created": 1580279004.7927399, + "asctime": "2020-12-21 22:33:06,988", + "created": 1608586386.9885995, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 264, + "lineno": 282, "message": "SJP: Executing callback response_data_method to process received data", "module": "__init__", - "msecs": 792.7398681640625, + "msecs": 988.5995388031006, "msg": "%s Executing callback %s to process received data", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 5868.7896728515625, + "relativeCreated": 5900.906562805176, "stack_info": null, - "thread": 139631579064064, + "thread": 139622161319680, "threadName": "Thread-19" }, { @@ -29342,32 +29402,32 @@ 45054, "[1, 3, 's']" ], - "asctime": "2020-01-29 07:23:24,792", - "created": 1580279004.792897, + "asctime": "2020-12-21 22:33:06,988", + "created": 1608586386.9888463, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 334, + "lineno": 352, "message": "SJP: TX -> status: 5, service_id: 11, data_id: 45054, data: \"[1, 3, 's']\"", "module": "__init__", - "msecs": 792.8969860076904, + "msecs": 988.8463020324707, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 5868.94679069519, + "relativeCreated": 5901.153326034546, "stack_info": null, - "thread": 139631579064064, + "thread": 139622161319680, "threadName": "Thread-19" }, { "args": [], - "asctime": "2020-01-29 07:23:24,793", - "created": 1580279004.7931857, + "asctime": "2020-12-21 22:33:06,989", + "created": 1608586386.9891772, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -29377,21 +29437,21 @@ "lineno": 55, "message": "Send data: (24): 00 00 00 05 00 00 00 0b 00 00 af fe 5b 31 2c 20 33 2c 20 22 73 22 5d 28", "module": "test_helpers", - "msecs": 793.1857109069824, + "msecs": 989.1772270202637, "msg": "Send data: (24): 00 00 00 05 00 00 00 0b 00 00 af fe 5b 31 2c 20 33 2c 20 22 73 22 5d 28", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 5869.235515594482, + "relativeCreated": 5901.484251022339, "stack_info": null, - "thread": 139631579064064, + "thread": 139622161319680, "threadName": "Thread-19" }, { "args": [], - "asctime": "2020-01-29 07:23:24,943", - "created": 1580279004.9438994, + "asctime": "2020-12-21 22:33:07,140", + "created": 1608586387.140101, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -29401,15 +29461,15 @@ "lineno": 66, "message": "Receive data (24): 00 00 00 05 00 00 00 0b 00 00 af fe 5b 31 2c 20 33 2c 20 22 73 22 5d 28", "module": "test_helpers", - "msecs": 943.899393081665, + "msecs": 140.10095596313477, "msg": "Receive data (24): 00 00 00 05 00 00 00 0b 00 00 af fe 5b 31 2c 20 33 2c 20 22 73 22 5d 28", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 6019.949197769165, + "relativeCreated": 6052.40797996521, "stack_info": null, - "thread": 139631570671360, + "thread": 139622152926976, "threadName": "Thread-20" }, { @@ -29420,26 +29480,26 @@ "45054", "[1, 3, 's']" ], - "asctime": "2020-01-29 07:23:24,944", - "created": 1580279004.9443014, + "asctime": "2020-12-21 22:33:07,140", + "created": 1608586387.140585, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 247, + "lineno": 259, "message": "SJP: RX <- status: 5, service_id: 11, data_id: 45054, data: \"[1, 3, 's']\"", "module": "__init__", - "msecs": 944.3013668060303, + "msecs": 140.58494567871094, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 6020.35117149353, + "relativeCreated": 6052.891969680786, "stack_info": null, - "thread": 139631570671360, + "thread": 139622152926976, "threadName": "Thread-20" }, { @@ -29447,52 +29507,52 @@ "SJP:", "Operation not permitted" ], - "asctime": "2020-01-29 07:23:24,944", - "created": 1580279004.9445307, + "asctime": "2020-12-21 22:33:07,140", + "created": 1608586387.1408508, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "WARNING", "levelno": 30, - "lineno": 274, + "lineno": 292, "message": "SJP: Received message has a peculiar status: Operation not permitted", "module": "__init__", - "msecs": 944.530725479126, + "msecs": 140.85078239440918, "msg": "%s Received message has a peculiar status: %s", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 6020.580530166626, + "relativeCreated": 6053.157806396484, "stack_info": null, - "thread": 139631570671360, + "thread": 139622152926976, "threadName": "Thread-20" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:24,944", - "created": 1580279004.9447167, + "asctime": "2020-12-21 22:33:07,141", + "created": 1608586387.1410503, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 292, + "lineno": 310, "message": "SJP: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 944.7166919708252, + "msecs": 141.0503387451172, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 6020.766496658325, + "relativeCreated": 6053.357362747192, "stack_info": null, - "thread": 139631570671360, + "thread": 139622152926976, "threadName": "Thread-20" }, { @@ -29503,32 +29563,32 @@ 45054, "{'test': 'test'}" ], - "asctime": "2020-01-29 07:23:25,143", - "created": 1580279005.143025, + "asctime": "2020-12-21 22:33:07,338", + "created": 1608586387.338942, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 334, + "lineno": 352, "message": "SJP: TX -> status: 0, service_id: 10, data_id: 45054, data: \"{'test': 'test'}\"", "module": "__init__", - "msecs": 143.02492141723633, + "msecs": 338.9420509338379, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 6219.074726104736, + "relativeCreated": 6251.249074935913, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-01-29 07:23:25,143", - "created": 1580279005.1432402, + "asctime": "2020-12-21 22:33:07,339", + "created": 1608586387.3394125, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -29538,21 +29598,21 @@ "lineno": 55, "message": "Send data: (29): 00 00 00 00 00 00 00 0a 00 00 af fe 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 47", "module": "test_helpers", - "msecs": 143.24021339416504, + "msecs": 339.4124507904053, "msg": "Send data: (29): 00 00 00 00 00 00 00 0a 00 00 af fe 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 47", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 6219.290018081665, + "relativeCreated": 6251.7194747924805, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-01-29 07:23:25,293", - "created": 1580279005.2938387, + "asctime": "2020-12-21 22:33:07,490", + "created": 1608586387.4903026, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -29562,15 +29622,15 @@ "lineno": 66, "message": "Receive data (29): 00 00 00 00 00 00 00 0a 00 00 af fe 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 47", "module": "test_helpers", - "msecs": 293.8387393951416, + "msecs": 490.30256271362305, "msg": "Receive data (29): 00 00 00 00 00 00 00 0a 00 00 af fe 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 47", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 6369.888544082642, + "relativeCreated": 6402.609586715698, "stack_info": null, - "thread": 139631570671360, + "thread": 139622152926976, "threadName": "Thread-21" }, { @@ -29581,26 +29641,26 @@ "45054", "{'test': 'test'}" ], - "asctime": "2020-01-29 07:23:25,294", - "created": 1580279005.2941003, + "asctime": "2020-12-21 22:33:07,490", + "created": 1608586387.490803, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 247, + "lineno": 259, "message": "SJP: RX <- status: 0, service_id: 10, data_id: 45054, data: \"{'test': 'test'}\"", "module": "__init__", - "msecs": 294.100284576416, + "msecs": 490.8030033111572, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 6370.150089263916, + "relativeCreated": 6403.110027313232, "stack_info": null, - "thread": 139631570671360, + "thread": 139622152926976, "threadName": "Thread-21" }, { @@ -29608,26 +29668,26 @@ "SJP:", "response_data_method" ], - "asctime": "2020-01-29 07:23:25,294", - "created": 1580279005.2942188, + "asctime": "2020-12-21 22:33:07,491", + "created": 1608586387.4910064, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 264, + "lineno": 282, "message": "SJP: Executing callback response_data_method to process received data", "module": "__init__", - "msecs": 294.2187786102295, + "msecs": 491.00637435913086, "msg": "%s Executing callback %s to process received data", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 6370.2685832977295, + "relativeCreated": 6403.313398361206, "stack_info": null, - "thread": 139631570671360, + "thread": 139622152926976, "threadName": "Thread-21" }, { @@ -29638,32 +29698,32 @@ 45054, "[1, 3, 's']" ], - "asctime": "2020-01-29 07:23:25,294", - "created": 1580279005.2943401, + "asctime": "2020-12-21 22:33:07,491", + "created": 1608586387.491178, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 334, + "lineno": 352, "message": "SJP: TX -> status: 5, service_id: 11, data_id: 45054, data: \"[1, 3, 's']\"", "module": "__init__", - "msecs": 294.3401336669922, + "msecs": 491.178035736084, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 6370.389938354492, + "relativeCreated": 6403.485059738159, "stack_info": null, - "thread": 139631570671360, + "thread": 139622152926976, "threadName": "Thread-21" }, { "args": [], - "asctime": "2020-01-29 07:23:25,294", - "created": 1580279005.2945287, + "asctime": "2020-12-21 22:33:07,491", + "created": 1608586387.4915006, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -29673,21 +29733,21 @@ "lineno": 55, "message": "Send data: (24): 00 00 00 05 00 00 00 0b 00 00 af fe 5b 31 2c 20 33 2c 20 22 73 22 5d 28", "module": "test_helpers", - "msecs": 294.5287227630615, + "msecs": 491.5006160736084, "msg": "Send data: (24): 00 00 00 05 00 00 00 0b 00 00 af fe 5b 31 2c 20 33 2c 20 22 73 22 5d 28", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 6370.5785274505615, + "relativeCreated": 6403.807640075684, "stack_info": null, - "thread": 139631570671360, + "thread": 139622152926976, "threadName": "Thread-21" }, { "args": [], - "asctime": "2020-01-29 07:23:25,444", - "created": 1580279005.4449923, + "asctime": "2020-12-21 22:33:07,642", + "created": 1608586387.6424353, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -29697,15 +29757,15 @@ "lineno": 66, "message": "Receive data (24): 00 00 00 05 00 00 00 0b 00 00 af fe 5b 31 2c 20 33 2c 20 22 73 22 5d 28", "module": "test_helpers", - "msecs": 444.9923038482666, + "msecs": 642.4353122711182, "msg": "Receive data (24): 00 00 00 05 00 00 00 0b 00 00 af fe 5b 31 2c 20 33 2c 20 22 73 22 5d 28", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 6521.042108535767, + "relativeCreated": 6554.742336273193, "stack_info": null, - "thread": 139631579064064, + "thread": 139622161319680, "threadName": "Thread-22" }, { @@ -29716,26 +29776,26 @@ "45054", "[1, 3, 's']" ], - "asctime": "2020-01-29 07:23:25,445", - "created": 1580279005.4451637, + "asctime": "2020-12-21 22:33:07,642", + "created": 1608586387.6429322, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 247, + "lineno": 259, "message": "SJP: RX <- status: 5, service_id: 11, data_id: 45054, data: \"[1, 3, 's']\"", "module": "__init__", - "msecs": 445.1637268066406, + "msecs": 642.9321765899658, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 6521.213531494141, + "relativeCreated": 6555.239200592041, "stack_info": null, - "thread": 139631579064064, + "thread": 139622161319680, "threadName": "Thread-22" }, { @@ -29743,74 +29803,74 @@ "SJP:", "Operation not permitted" ], - "asctime": "2020-01-29 07:23:25,445", - "created": 1580279005.4452312, + "asctime": "2020-12-21 22:33:07,643", + "created": 1608586387.6431634, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "WARNING", "levelno": 30, - "lineno": 274, + "lineno": 292, "message": "SJP: Received message has a peculiar status: Operation not permitted", "module": "__init__", - "msecs": 445.23119926452637, + "msecs": 643.1634426116943, "msg": "%s Received message has a peculiar status: %s", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 6521.281003952026, + "relativeCreated": 6555.4704666137695, "stack_info": null, - "thread": 139631579064064, + "thread": 139622161319680, "threadName": "Thread-22" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:25,445", - "created": 1580279005.4452987, + "asctime": "2020-12-21 22:33:07,643", + "created": 1608586387.64334, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 292, + "lineno": 310, "message": "SJP: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 445.2986717224121, + "msecs": 643.3401107788086, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 6521.348476409912, + "relativeCreated": 6555.647134780884, "stack_info": null, - "thread": 139631579064064, + "thread": 139622161319680, "threadName": "Thread-22" } ], - "msecs": 644.7405815124512, + "msecs": 841.3422107696533, "msg": "Send and received data by struct_json_protocol.", "name": "__tLogger__", "pathname": "src/tests/test_normal_operation.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 6720.790386199951, + "relativeCreated": 6753.6492347717285, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread", - "time_consumption": 0.19944190979003906 + "time_consumption": 0.19800209999084473 }, { "args": [ "True", "" ], - "asctime": "2020-01-29 07:23:25,645", - "created": 1580279005.64526, + "asctime": "2020-12-21 22:33:07,842", + "created": 1608586387.8422494, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -29827,8 +29887,8 @@ "True", "" ], - "asctime": "2020-01-29 07:23:25,644", - "created": 1580279005.6449993, + "asctime": "2020-12-21 22:33:07,841", + "created": 1608586387.8418272, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -29838,15 +29898,15 @@ "lineno": 22, "message": "Result (Return value of send method): True ()", "module": "test", - "msecs": 644.9992656707764, + "msecs": 841.8271541595459, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 6721.049070358276, + "relativeCreated": 6754.134178161621, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -29855,8 +29915,8 @@ "True", "" ], - "asctime": "2020-01-29 07:23:25,645", - "created": 1580279005.645133, + "asctime": "2020-12-21 22:33:07,842", + "created": 1608586387.8420177, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -29866,37 +29926,37 @@ "lineno": 26, "message": "Expectation (Return value of send method): result = True ()", "module": "test", - "msecs": 645.1330184936523, + "msecs": 842.017650604248, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 6721.182823181152, + "relativeCreated": 6754.324674606323, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" } ], - "msecs": 645.2600955963135, + "msecs": 842.2493934631348, "msg": "Return value of send method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 6721.3099002838135, + "relativeCreated": 6754.55641746521, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread", - "time_consumption": 0.0001270771026611328 + "time_consumption": 0.00023174285888671875 }, { "args": [ "0", "" ], - "asctime": "2020-01-29 07:23:25,645", - "created": 1580279005.6455712, + "asctime": "2020-12-21 22:33:07,842", + "created": 1608586387.8427804, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -29913,8 +29973,8 @@ "0", "" ], - "asctime": "2020-01-29 07:23:25,645", - "created": 1580279005.645404, + "asctime": "2020-12-21 22:33:07,842", + "created": 1608586387.8425052, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -29924,15 +29984,15 @@ "lineno": 22, "message": "Result (Request Status (Okay) transfered via struct_json_protocol): 0 ()", "module": "test", - "msecs": 645.4041004180908, + "msecs": 842.5052165985107, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 6721.453905105591, + "relativeCreated": 6754.812240600586, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -29941,8 +30001,8 @@ "0", "" ], - "asctime": "2020-01-29 07:23:25,645", - "created": 1580279005.6454892, + "asctime": "2020-12-21 22:33:07,842", + "created": 1608586387.8426468, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -29952,37 +30012,37 @@ "lineno": 26, "message": "Expectation (Request Status (Okay) transfered via struct_json_protocol): result = 0 ()", "module": "test", - "msecs": 645.4892158508301, + "msecs": 842.6468372344971, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 6721.53902053833, + "relativeCreated": 6754.953861236572, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" } ], - "msecs": 645.571231842041, + "msecs": 842.780351638794, "msg": "Request Status (Okay) transfered via struct_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 6721.621036529541, + "relativeCreated": 6755.087375640869, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread", - "time_consumption": 8.20159912109375e-05 + "time_consumption": 0.000133514404296875 }, { "args": [ "{'test': 'test'}", "" ], - "asctime": "2020-01-29 07:23:25,645", - "created": 1580279005.6458542, + "asctime": "2020-12-21 22:33:07,843", + "created": 1608586387.8433201, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -29999,8 +30059,8 @@ "{ 'test': 'test' }", "" ], - "asctime": "2020-01-29 07:23:25,645", - "created": 1580279005.6456873, + "asctime": "2020-12-21 22:33:07,843", + "created": 1608586387.8430083, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -30010,15 +30070,15 @@ "lineno": 22, "message": "Result (Request Data transfered via struct_json_protocol): { 'test': 'test' } ()", "module": "test", - "msecs": 645.6873416900635, + "msecs": 843.008279800415, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 6721.7371463775635, + "relativeCreated": 6755.31530380249, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -30027,8 +30087,8 @@ "{ 'test': 'test' }", "" ], - "asctime": "2020-01-29 07:23:25,645", - "created": 1580279005.6457644, + "asctime": "2020-12-21 22:33:07,843", + "created": 1608586387.8431525, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -30038,37 +30098,37 @@ "lineno": 26, "message": "Expectation (Request Data transfered via struct_json_protocol): result = { 'test': 'test' } ()", "module": "test", - "msecs": 645.7643508911133, + "msecs": 843.1525230407715, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 6721.814155578613, + "relativeCreated": 6755.459547042847, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" } ], - "msecs": 645.8542346954346, + "msecs": 843.3201313018799, "msg": "Request Data transfered via struct_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 6721.904039382935, + "relativeCreated": 6755.627155303955, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread", - "time_consumption": 8.988380432128906e-05 + "time_consumption": 0.00016760826110839844 }, { "args": [ "5", "" ], - "asctime": "2020-01-29 07:23:25,646", - "created": 1580279005.64609, + "asctime": "2020-12-21 22:33:07,843", + "created": 1608586387.8438168, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -30085,8 +30145,8 @@ "5", "" ], - "asctime": "2020-01-29 07:23:25,645", - "created": 1580279005.6459625, + "asctime": "2020-12-21 22:33:07,843", + "created": 1608586387.8435407, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -30096,15 +30156,15 @@ "lineno": 22, "message": "Result (Response Status (Operation not permitted) transfered via struct_json_protocol): 5 ()", "module": "test", - "msecs": 645.9624767303467, + "msecs": 843.5406684875488, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 6722.012281417847, + "relativeCreated": 6755.847692489624, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -30113,8 +30173,8 @@ "5", "" ], - "asctime": "2020-01-29 07:23:25,646", - "created": 1580279005.646026, + "asctime": "2020-12-21 22:33:07,843", + "created": 1608586387.8436744, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -30124,37 +30184,37 @@ "lineno": 26, "message": "Expectation (Response Status (Operation not permitted) transfered via struct_json_protocol): result = 5 ()", "module": "test", - "msecs": 646.0258960723877, + "msecs": 843.6744213104248, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 6722.075700759888, + "relativeCreated": 6755.9814453125, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" } ], - "msecs": 646.090030670166, + "msecs": 843.8167572021484, "msg": "Response Status (Operation not permitted) transfered via struct_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 6722.139835357666, + "relativeCreated": 6756.123781204224, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread", - "time_consumption": 6.413459777832031e-05 + "time_consumption": 0.0001423358917236328 }, { "args": [ "[1, 3, 's']", "" ], - "asctime": "2020-01-29 07:23:25,646", - "created": 1580279005.6463413, + "asctime": "2020-12-21 22:33:07,844", + "created": 1608586387.8445113, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -30171,8 +30231,8 @@ "[ 1, 3, 's' ]", "" ], - "asctime": "2020-01-29 07:23:25,646", - "created": 1580279005.6461892, + "asctime": "2020-12-21 22:33:07,844", + "created": 1608586387.844117, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -30182,15 +30242,15 @@ "lineno": 22, "message": "Result (Response Data transfered via struct_json_protocol): [ 1, 3, 's' ] ()", "module": "test", - "msecs": 646.1892127990723, + "msecs": 844.1169261932373, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 6722.239017486572, + "relativeCreated": 6756.4239501953125, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -30199,8 +30259,8 @@ "[ 1, 3, 's' ]", "" ], - "asctime": "2020-01-29 07:23:25,646", - "created": 1580279005.6462562, + "asctime": "2020-12-21 22:33:07,844", + "created": 1608586387.8442957, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -30210,37 +30270,37 @@ "lineno": 26, "message": "Expectation (Response Data transfered via struct_json_protocol): result = [ 1, 3, 's' ] ()", "module": "test", - "msecs": 646.2562084197998, + "msecs": 844.2957401275635, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 6722.3060131073, + "relativeCreated": 6756.602764129639, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" } ], - "msecs": 646.3413238525391, + "msecs": 844.5112705230713, "msg": "Response Data transfered via struct_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 6722.391128540039, + "relativeCreated": 6756.8182945251465, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread", - "time_consumption": 8.511543273925781e-05 + "time_consumption": 0.0002155303955078125 }, { "args": [ "None", "" ], - "asctime": "2020-01-29 07:23:25,747", - "created": 1580279005.747103, + "asctime": "2020-12-21 22:33:07,945", + "created": 1608586387.945751, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -30258,26 +30318,26 @@ "11", "45054" ], - "asctime": "2020-01-29 07:23:25,746", - "created": 1580279005.746652, + "asctime": "2020-12-21 22:33:07,945", + "created": 1608586387.9450886, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 309, + "lineno": 327, "message": "SJP: TIMEOUT (0.1s): Requested data (service_id: 11; data_id: 45054) not in buffer.", "module": "__init__", - "msecs": 746.6518878936768, + "msecs": 945.0886249542236, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 6822.701692581177, + "relativeCreated": 6857.395648956299, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -30286,8 +30346,8 @@ "None", "" ], - "asctime": "2020-01-29 07:23:25,746", - "created": 1580279005.7468567, + "asctime": "2020-12-21 22:33:07,945", + "created": 1608586387.9453967, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -30297,15 +30357,15 @@ "lineno": 22, "message": "Result (Return Value (request instance) for struct_json_protocol.receive with data data_id 0xaffe): None ()", "module": "test", - "msecs": 746.856689453125, + "msecs": 945.3966617584229, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 6822.906494140625, + "relativeCreated": 6857.703685760498, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -30314,8 +30374,8 @@ "None", "" ], - "asctime": "2020-01-29 07:23:25,746", - "created": 1580279005.7469888, + "asctime": "2020-12-21 22:33:07,945", + "created": 1608586387.9455678, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -30325,37 +30385,37 @@ "lineno": 26, "message": "Expectation (Return Value (request instance) for struct_json_protocol.receive with data data_id 0xaffe): result = None ()", "module": "test", - "msecs": 746.9887733459473, + "msecs": 945.5678462982178, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 6823.038578033447, + "relativeCreated": 6857.874870300293, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" } ], - "msecs": 747.1029758453369, + "msecs": 945.7509517669678, "msg": "Return Value (request instance) for struct_json_protocol.receive with data data_id 0xaffe is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 6823.152780532837, + "relativeCreated": 6858.057975769043, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread", - "time_consumption": 0.00011420249938964844 + "time_consumption": 0.00018310546875 }, { "args": [ "None", "" ], - "asctime": "2020-01-29 07:23:25,847", - "created": 1580279005.8477967, + "asctime": "2020-12-21 22:33:08,047", + "created": 1608586388.047022, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -30373,26 +30433,26 @@ "10", "45054" ], - "asctime": "2020-01-29 07:23:25,847", - "created": 1580279005.8474686, + "asctime": "2020-12-21 22:33:08,046", + "created": 1608586388.0463855, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 309, + "lineno": 327, "message": "SJP: TIMEOUT (0.1s): Requested data (service_id: 10; data_id: 45054) not in buffer.", "module": "__init__", - "msecs": 847.4686145782471, + "msecs": 46.38552665710449, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 6923.518419265747, + "relativeCreated": 6958.69255065918, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -30401,8 +30461,8 @@ "None", "" ], - "asctime": "2020-01-29 07:23:25,847", - "created": 1580279005.8476348, + "asctime": "2020-12-21 22:33:08,046", + "created": 1608586388.0466983, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -30412,15 +30472,15 @@ "lineno": 22, "message": "Result (Return Value (response instance) for struct_json_protocol.receive with data data_id 0xaffe): None ()", "module": "test", - "msecs": 847.6347923278809, + "msecs": 46.69833183288574, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 6923.684597015381, + "relativeCreated": 6959.005355834961, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -30429,8 +30489,8 @@ "None", "" ], - "asctime": "2020-01-29 07:23:25,847", - "created": 1580279005.8477194, + "asctime": "2020-12-21 22:33:08,046", + "created": 1608586388.046869, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -30440,41 +30500,41 @@ "lineno": 26, "message": "Expectation (Return Value (response instance) for struct_json_protocol.receive with data data_id 0xaffe): result = None ()", "module": "test", - "msecs": 847.7194309234619, + "msecs": 46.86903953552246, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 6923.769235610962, + "relativeCreated": 6959.176063537598, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" } ], - "msecs": 847.7966785430908, + "msecs": 47.022104263305664, "msg": "Return Value (response instance) for struct_json_protocol.receive with data data_id 0xaffe is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 6923.846483230591, + "relativeCreated": 6959.329128265381, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread", - "time_consumption": 7.724761962890625e-05 + "time_consumption": 0.00015306472778320312 } ], - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread", - "time_consumption": 1.207657814025879, - "time_finished": "2020-01-29 07:23:25,847", - "time_start": "2020-01-29 07:23:24,640" + "time_consumption": 1.2119417190551758, + "time_finished": "2020-12-21 22:33:08,047", + "time_start": "2020-12-21 22:33:06,835" }, "socket_protocol.struct_json_protocol: Send and receive check.": { "args": null, - "asctime": "2020-01-29 07:23:18,985", - "created": 1580278998.9856496, + "asctime": "2020-12-21 22:33:01,162", + "created": 1608586381.1620035, "exc_info": null, "exc_text": null, "filename": "__init__.py", @@ -30485,19 +30545,19 @@ "message": "socket_protocol.struct_json_protocol: Send and receive check.", "module": "__init__", "moduleLogger": [], - "msecs": 985.649585723877, + "msecs": 162.0035171508789, "msg": "socket_protocol.struct_json_protocol: Send and receive check.", "name": "__tLogger__", "pathname": "/user_data/data/dirk/prj/unittest/socket_protocol/unittest/src/tests/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 61.69939041137695, + "relativeCreated": 74.3105411529541, "stack_info": null, "testcaseLogger": [ { "args": [], - "asctime": "2020-01-29 07:23:19,487", - "created": 1580278999.4878151, + "asctime": "2020-12-21 22:33:01,664", + "created": 1608586381.664424, "exc_info": null, "exc_text": null, "filename": "test_normal_operation.py", @@ -30512,104 +30572,104 @@ "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:18,985", - "created": 1580278998.985852, + "asctime": "2020-12-21 22:33:01,162", + "created": 1608586381.1622646, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 295, + "lineno": 313, "message": "SJP: Cleaning up receive-buffer", "module": "__init__", - "msecs": 985.8520030975342, + "msecs": 162.26458549499512, "msg": "%s Cleaning up receive-buffer", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 61.90180778503418, + "relativeCreated": 74.57160949707031, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:18,986", - "created": 1580278998.9861197, + "asctime": "2020-12-21 22:33:01,162", + "created": 1608586381.1624362, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 199, + "lineno": 217, "message": "SJP: Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "module": "__init__", - "msecs": 986.1197471618652, + "msecs": 162.43624687194824, "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 62.169551849365234, + "relativeCreated": 74.74327087402344, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:18,986", - "created": 1580278998.986174, + "asctime": "2020-12-21 22:33:01,162", + "created": 1608586381.162509, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__clean_receive_buffer__", "levelname": "DEBUG", "levelno": 10, - "lineno": 295, + "lineno": 313, "message": "SJP: Cleaning up receive-buffer", "module": "__init__", - "msecs": 986.1741065979004, + "msecs": 162.50896453857422, "msg": "%s Cleaning up receive-buffer", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 62.22391128540039, + "relativeCreated": 74.81598854064941, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:18,986", - "created": 1580278998.9862535, + "asctime": "2020-12-21 22:33:01,162", + "created": 1608586381.162591, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__authentification_state_reset__", "levelname": "INFO", "levelno": 20, - "lineno": 199, + "lineno": 217, "message": "SJP: Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", "module": "__init__", - "msecs": 986.2534999847412, + "msecs": 162.59098052978516, "msg": "%s Resetting authentification state to AUTH_STATE_UNKNOWN_CLIENT", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 62.30330467224121, + "relativeCreated": 74.89800453186035, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -30620,32 +30680,32 @@ 45054, "{'test': 'test'}" ], - "asctime": "2020-01-29 07:23:18,986", - "created": 1580278998.9863136, + "asctime": "2020-12-21 22:33:01,162", + "created": 1608586381.1626556, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 334, + "lineno": 352, "message": "SJP: TX -> status: 0, service_id: 10, data_id: 45054, data: \"{'test': 'test'}\"", "module": "__init__", - "msecs": 986.3135814666748, + "msecs": 162.65559196472168, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 62.363386154174805, + "relativeCreated": 74.96261596679688, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-01-29 07:23:18,986", - "created": 1580278998.9864216, + "asctime": "2020-12-21 22:33:01,162", + "created": 1608586381.1627662, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -30655,21 +30715,21 @@ "lineno": 55, "message": "Send data: (29): 00 00 00 00 00 00 00 0a 00 00 af fe 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 47", "module": "test_helpers", - "msecs": 986.4215850830078, + "msecs": 162.7662181854248, "msg": "Send data: (29): 00 00 00 00 00 00 00 0a 00 00 af fe 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 47", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 62.47138977050781, + "relativeCreated": 75.0732421875, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { "args": [], - "asctime": "2020-01-29 07:23:19,136", - "created": 1580278999.1368968, + "asctime": "2020-12-21 22:33:01,313", + "created": 1608586381.3133764, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -30679,15 +30739,15 @@ "lineno": 66, "message": "Receive data (29): 00 00 00 00 00 00 00 0a 00 00 af fe 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 47", "module": "test_helpers", - "msecs": 136.89684867858887, + "msecs": 313.37642669677734, "msg": "Receive data (29): 00 00 00 00 00 00 00 0a 00 00 af fe 7b 22 74 65 73 74 22 3a 20 22 74 65 73 74 22 7d 47", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 212.94665336608887, + "relativeCreated": 225.68345069885254, "stack_info": null, - "thread": 139631579064064, + "thread": 139622161319680, "threadName": "Thread-1" }, { @@ -30698,26 +30758,26 @@ "45054", "{'test': 'test'}" ], - "asctime": "2020-01-29 07:23:19,137", - "created": 1580278999.1371748, + "asctime": "2020-12-21 22:33:01,313", + "created": 1608586381.313918, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 247, + "lineno": 259, "message": "SJP: RX <- status: 0, service_id: 10, data_id: 45054, data: \"{'test': 'test'}\"", "module": "__init__", - "msecs": 137.1748447418213, + "msecs": 313.9181137084961, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 213.2246494293213, + "relativeCreated": 226.2251377105713, "stack_info": null, - "thread": 139631579064064, + "thread": 139622161319680, "threadName": "Thread-1" }, { @@ -30725,26 +30785,26 @@ "SJP:", "response_data_method" ], - "asctime": "2020-01-29 07:23:19,137", - "created": 1580278999.1373127, + "asctime": "2020-12-21 22:33:01,314", + "created": 1608586381.3141367, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "DEBUG", "levelno": 10, - "lineno": 264, + "lineno": 282, "message": "SJP: Executing callback response_data_method to process received data", "module": "__init__", - "msecs": 137.312650680542, + "msecs": 314.1367435455322, "msg": "%s Executing callback %s to process received data", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 213.362455368042, + "relativeCreated": 226.44376754760742, "stack_info": null, - "thread": 139631579064064, + "thread": 139622161319680, "threadName": "Thread-1" }, { @@ -30755,32 +30815,32 @@ 45054, "[1, 3, 's']" ], - "asctime": "2020-01-29 07:23:19,137", - "created": 1580278999.1374156, + "asctime": "2020-12-21 22:33:01,314", + "created": 1608586381.3143222, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "send", "levelname": "INFO", "levelno": 20, - "lineno": 334, + "lineno": 352, "message": "SJP: TX -> status: 5, service_id: 11, data_id: 45054, data: \"[1, 3, 's']\"", "module": "__init__", - "msecs": 137.41564750671387, + "msecs": 314.32223320007324, "msg": "%s TX -> status: %d, service_id: %d, data_id: %d, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 213.46545219421387, + "relativeCreated": 226.62925720214844, "stack_info": null, - "thread": 139631579064064, + "thread": 139622161319680, "threadName": "Thread-1" }, { "args": [], - "asctime": "2020-01-29 07:23:19,137", - "created": 1580278999.1376042, + "asctime": "2020-12-21 22:33:01,314", + "created": 1608586381.3146658, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -30790,21 +30850,21 @@ "lineno": 55, "message": "Send data: (24): 00 00 00 05 00 00 00 0b 00 00 af fe 5b 31 2c 20 33 2c 20 22 73 22 5d 28", "module": "test_helpers", - "msecs": 137.6042366027832, + "msecs": 314.6657943725586, "msg": "Send data: (24): 00 00 00 05 00 00 00 0b 00 00 af fe 5b 31 2c 20 33 2c 20 22 73 22 5d 28", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 213.6540412902832, + "relativeCreated": 226.9728183746338, "stack_info": null, - "thread": 139631579064064, + "thread": 139622161319680, "threadName": "Thread-1" }, { "args": [], - "asctime": "2020-01-29 07:23:19,288", - "created": 1580278999.288231, + "asctime": "2020-12-21 22:33:01,465", + "created": 1608586381.4656246, "exc_info": null, "exc_text": null, "filename": "test_helpers.py", @@ -30814,15 +30874,15 @@ "lineno": 66, "message": "Receive data (24): 00 00 00 05 00 00 00 0b 00 00 af fe 5b 31 2c 20 33 2c 20 22 73 22 5d 28", "module": "test_helpers", - "msecs": 288.23089599609375, + "msecs": 465.6245708465576, "msg": "Receive data (24): 00 00 00 05 00 00 00 0b 00 00 af fe 5b 31 2c 20 33 2c 20 22 73 22 5d 28", "name": "__unittest__", "pathname": "src/tests/test_helpers.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 364.28070068359375, + "relativeCreated": 377.9315948486328, "stack_info": null, - "thread": 139631570671360, + "thread": 139622152926976, "threadName": "Thread-2" }, { @@ -30833,26 +30893,26 @@ "45054", "[1, 3, 's']" ], - "asctime": "2020-01-29 07:23:19,288", - "created": 1580278999.2886572, + "asctime": "2020-12-21 22:33:01,466", + "created": 1608586381.4661188, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "INFO", "levelno": 20, - "lineno": 247, + "lineno": 259, "message": "SJP: RX <- status: 5, service_id: 11, data_id: 45054, data: \"[1, 3, 's']\"", "module": "__init__", - "msecs": 288.65718841552734, + "msecs": 466.11881256103516, "msg": "%s RX <- status: %s, service_id: %s, data_id: %s, data: \"%s\"", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 364.70699310302734, + "relativeCreated": 378.42583656311035, "stack_info": null, - "thread": 139631570671360, + "thread": 139622152926976, "threadName": "Thread-2" }, { @@ -30860,74 +30920,74 @@ "SJP:", "Operation not permitted" ], - "asctime": "2020-01-29 07:23:19,288", - "created": 1580278999.2888854, + "asctime": "2020-12-21 22:33:01,466", + "created": 1608586381.4663703, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__data_available_callback__", "levelname": "WARNING", "levelno": 30, - "lineno": 274, + "lineno": 292, "message": "SJP: Received message has a peculiar status: Operation not permitted", "module": "__init__", - "msecs": 288.88535499572754, + "msecs": 466.3703441619873, "msg": "%s Received message has a peculiar status: %s", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 364.93515968322754, + "relativeCreated": 378.6773681640625, "stack_info": null, - "thread": 139631570671360, + "thread": 139622152926976, "threadName": "Thread-2" }, { "args": [ "SJP:" ], - "asctime": "2020-01-29 07:23:19,289", - "created": 1580278999.2890766, + "asctime": "2020-12-21 22:33:01,466", + "created": 1608586381.4665573, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "__buffer_received_data__", "levelname": "DEBUG", "levelno": 10, - "lineno": 292, + "lineno": 310, "message": "SJP: Message data is stored in buffer and is now ready to be retrieved by receive method", "module": "__init__", - "msecs": 289.076566696167, + "msecs": 466.55726432800293, "msg": "%s Message data is stored in buffer and is now ready to be retrieved by receive method", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 365.126371383667, + "relativeCreated": 378.8642883300781, "stack_info": null, - "thread": 139631570671360, + "thread": 139622152926976, "threadName": "Thread-2" } ], - "msecs": 487.81514167785645, + "msecs": 664.423942565918, "msg": "Send and received data by struct_json_protocol.", "name": "__tLogger__", "pathname": "src/tests/test_normal_operation.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 563.8649463653564, + "relativeCreated": 576.7309665679932, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread", - "time_consumption": 0.19873857498168945 + "time_consumption": 0.19786667823791504 }, { "args": [ "True", "" ], - "asctime": "2020-01-29 07:23:19,488", - "created": 1580278999.4884744, + "asctime": "2020-12-21 22:33:01,665", + "created": 1608586381.665286, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -30944,8 +31004,8 @@ "True", "" ], - "asctime": "2020-01-29 07:23:19,488", - "created": 1580278999.4881597, + "asctime": "2020-12-21 22:33:01,664", + "created": 1608586381.6649191, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -30955,15 +31015,15 @@ "lineno": 22, "message": "Result (Return value of send method): True ()", "module": "test", - "msecs": 488.1596565246582, + "msecs": 664.9191379547119, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 564.2094612121582, + "relativeCreated": 577.2261619567871, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -30972,8 +31032,8 @@ "True", "" ], - "asctime": "2020-01-29 07:23:19,488", - "created": 1580278999.4883265, + "asctime": "2020-12-21 22:33:01,665", + "created": 1608586381.6651008, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -30983,37 +31043,37 @@ "lineno": 26, "message": "Expectation (Return value of send method): result = True ()", "module": "test", - "msecs": 488.3265495300293, + "msecs": 665.1008129119873, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 564.3763542175293, + "relativeCreated": 577.4078369140625, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" } ], - "msecs": 488.47436904907227, + "msecs": 665.2860641479492, "msg": "Return value of send method is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 564.5241737365723, + "relativeCreated": 577.5930881500244, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread", - "time_consumption": 0.00014781951904296875 + "time_consumption": 0.00018525123596191406 }, { "args": [ "0", "" ], - "asctime": "2020-01-29 07:23:19,488", - "created": 1580278999.4889488, + "asctime": "2020-12-21 22:33:01,665", + "created": 1608586381.665847, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -31030,8 +31090,8 @@ "0", "" ], - "asctime": "2020-01-29 07:23:19,488", - "created": 1580278999.4886725, + "asctime": "2020-12-21 22:33:01,665", + "created": 1608586381.6655302, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -31041,15 +31101,15 @@ "lineno": 22, "message": "Result (Request Status (Okay) transfered via struct_json_protocol): 0 ()", "module": "test", - "msecs": 488.67249488830566, + "msecs": 665.5302047729492, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 564.7222995758057, + "relativeCreated": 577.8372287750244, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -31058,8 +31118,8 @@ "0", "" ], - "asctime": "2020-01-29 07:23:19,488", - "created": 1580278999.48882, + "asctime": "2020-12-21 22:33:01,665", + "created": 1608586381.6657012, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -31069,37 +31129,37 @@ "lineno": 26, "message": "Expectation (Request Status (Okay) transfered via struct_json_protocol): result = 0 ()", "module": "test", - "msecs": 488.82007598876953, + "msecs": 665.701150894165, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 564.8698806762695, + "relativeCreated": 578.0081748962402, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" } ], - "msecs": 488.9488220214844, + "msecs": 665.8470630645752, "msg": "Request Status (Okay) transfered via struct_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 564.9986267089844, + "relativeCreated": 578.1540870666504, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread", - "time_consumption": 0.00012874603271484375 + "time_consumption": 0.00014591217041015625 }, { "args": [ "{'test': 'test'}", "" ], - "asctime": "2020-01-29 07:23:19,489", - "created": 1580278999.4896939, + "asctime": "2020-12-21 22:33:01,666", + "created": 1608586381.6667407, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -31116,8 +31176,8 @@ "{ 'test': 'test' }", "" ], - "asctime": "2020-01-29 07:23:19,489", - "created": 1580278999.4891622, + "asctime": "2020-12-21 22:33:01,666", + "created": 1608586381.6661901, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -31127,15 +31187,15 @@ "lineno": 22, "message": "Result (Request Data transfered via struct_json_protocol): { 'test': 'test' } ()", "module": "test", - "msecs": 489.1622066497803, + "msecs": 666.1901473999023, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 565.2120113372803, + "relativeCreated": 578.4971714019775, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -31144,8 +31204,8 @@ "{ 'test': 'test' }", "" ], - "asctime": "2020-01-29 07:23:19,489", - "created": 1580278999.4894438, + "asctime": "2020-12-21 22:33:01,666", + "created": 1608586381.6664546, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -31155,37 +31215,37 @@ "lineno": 26, "message": "Expectation (Request Data transfered via struct_json_protocol): result = { 'test': 'test' } ()", "module": "test", - "msecs": 489.4437789916992, + "msecs": 666.454553604126, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 565.4935836791992, + "relativeCreated": 578.7615776062012, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" } ], - "msecs": 489.69388008117676, + "msecs": 666.7406558990479, "msg": "Request Data transfered via struct_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 565.7436847686768, + "relativeCreated": 579.047679901123, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread", - "time_consumption": 0.00025010108947753906 + "time_consumption": 0.000286102294921875 }, { "args": [ "5", "" ], - "asctime": "2020-01-29 07:23:19,490", - "created": 1580278999.4903088, + "asctime": "2020-12-21 22:33:01,667", + "created": 1608586381.6676555, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -31202,8 +31262,8 @@ "5", "" ], - "asctime": "2020-01-29 07:23:19,489", - "created": 1580278999.4899259, + "asctime": "2020-12-21 22:33:01,667", + "created": 1608586381.6671185, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -31213,15 +31273,15 @@ "lineno": 22, "message": "Result (Response Status (Operation not permitted) transfered via struct_json_protocol): 5 ()", "module": "test", - "msecs": 489.9258613586426, + "msecs": 667.1185493469238, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 565.9756660461426, + "relativeCreated": 579.425573348999, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -31230,8 +31290,8 @@ "5", "" ], - "asctime": "2020-01-29 07:23:19,490", - "created": 1580278999.4901223, + "asctime": "2020-12-21 22:33:01,667", + "created": 1608586381.6673827, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -31241,37 +31301,37 @@ "lineno": 26, "message": "Expectation (Response Status (Operation not permitted) transfered via struct_json_protocol): result = 5 ()", "module": "test", - "msecs": 490.12231826782227, + "msecs": 667.3827171325684, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 566.1721229553223, + "relativeCreated": 579.6897411346436, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" } ], - "msecs": 490.3087615966797, + "msecs": 667.6554679870605, "msg": "Response Status (Operation not permitted) transfered via struct_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 566.3585662841797, + "relativeCreated": 579.9624919891357, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread", - "time_consumption": 0.00018644332885742188 + "time_consumption": 0.0002727508544921875 }, { "args": [ "[1, 3, 's']", "" ], - "asctime": "2020-01-29 07:23:19,490", - "created": 1580278999.4908488, + "asctime": "2020-12-21 22:33:01,668", + "created": 1608586381.6685386, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -31288,8 +31348,8 @@ "[ 1, 3, 's' ]", "" ], - "asctime": "2020-01-29 07:23:19,490", - "created": 1580278999.4905179, + "asctime": "2020-12-21 22:33:01,668", + "created": 1608586381.6681294, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -31299,15 +31359,15 @@ "lineno": 22, "message": "Result (Response Data transfered via struct_json_protocol): [ 1, 3, 's' ] ()", "module": "test", - "msecs": 490.51785469055176, + "msecs": 668.1294441223145, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 566.5676593780518, + "relativeCreated": 580.4364681243896, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -31316,8 +31376,8 @@ "[ 1, 3, 's' ]", "" ], - "asctime": "2020-01-29 07:23:19,490", - "created": 1580278999.490658, + "asctime": "2020-12-21 22:33:01,668", + "created": 1608586381.6683183, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -31327,37 +31387,37 @@ "lineno": 26, "message": "Expectation (Response Data transfered via struct_json_protocol): result = [ 1, 3, 's' ] ()", "module": "test", - "msecs": 490.6580448150635, + "msecs": 668.3182716369629, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 566.7078495025635, + "relativeCreated": 580.6252956390381, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" } ], - "msecs": 490.8487796783447, + "msecs": 668.5385704040527, "msg": "Response Data transfered via struct_json_protocol is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 566.8985843658447, + "relativeCreated": 580.8455944061279, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread", - "time_consumption": 0.00019073486328125 + "time_consumption": 0.00022029876708984375 }, { "args": [ "None", "" ], - "asctime": "2020-01-29 07:23:19,591", - "created": 1580278999.5918276, + "asctime": "2020-12-21 22:33:01,769", + "created": 1608586381.7697103, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -31375,26 +31435,26 @@ "11", "45054" ], - "asctime": "2020-01-29 07:23:19,591", - "created": 1580278999.591284, + "asctime": "2020-12-21 22:33:01,769", + "created": 1608586381.769048, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 309, + "lineno": 327, "message": "SJP: TIMEOUT (0.1s): Requested data (service_id: 11; data_id: 45054) not in buffer.", "module": "__init__", - "msecs": 591.2840366363525, + "msecs": 769.0479755401611, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 667.3338413238525, + "relativeCreated": 681.3549995422363, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -31403,8 +31463,8 @@ "None", "" ], - "asctime": "2020-01-29 07:23:19,591", - "created": 1580278999.591512, + "asctime": "2020-12-21 22:33:01,769", + "created": 1608586381.769358, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -31414,15 +31474,15 @@ "lineno": 22, "message": "Result (Return Value (request instance) for struct_json_protocol.receive with data data_id 0xaffe): None ()", "module": "test", - "msecs": 591.5119647979736, + "msecs": 769.3579196929932, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 667.5617694854736, + "relativeCreated": 681.6649436950684, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -31431,8 +31491,8 @@ "None", "" ], - "asctime": "2020-01-29 07:23:19,591", - "created": 1580278999.5916684, + "asctime": "2020-12-21 22:33:01,769", + "created": 1608586381.7695498, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -31442,37 +31502,37 @@ "lineno": 26, "message": "Expectation (Return Value (request instance) for struct_json_protocol.receive with data data_id 0xaffe): result = None ()", "module": "test", - "msecs": 591.6683673858643, + "msecs": 769.5498466491699, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 667.7181720733643, + "relativeCreated": 681.8568706512451, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" } ], - "msecs": 591.8276309967041, + "msecs": 769.7103023529053, "msg": "Return Value (request instance) for struct_json_protocol.receive with data data_id 0xaffe is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 667.8774356842041, + "relativeCreated": 682.0173263549805, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread", - "time_consumption": 0.00015926361083984375 + "time_consumption": 0.00016045570373535156 }, { "args": [ "None", "" ], - "asctime": "2020-01-29 07:23:19,692", - "created": 1580278999.6926527, + "asctime": "2020-12-21 22:33:01,870", + "created": 1608586381.8706522, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -31490,26 +31550,26 @@ "10", "45054" ], - "asctime": "2020-01-29 07:23:19,692", - "created": 1580278999.6922495, + "asctime": "2020-12-21 22:33:01,870", + "created": 1608586381.8702755, "exc_info": null, "exc_text": null, "filename": "__init__.py", "funcName": "receive", "levelname": "WARNING", "levelno": 30, - "lineno": 309, + "lineno": 327, "message": "SJP: TIMEOUT (0.1s): Requested data (service_id: 10; data_id: 45054) not in buffer.", "module": "__init__", - "msecs": 692.2495365142822, + "msecs": 870.2754974365234, "msg": "%s TIMEOUT (%ss): Requested data (service_id: %s; data_id: %s) not in buffer.", - "name": "SOCKET_PROTOCOL", + "name": "root.socket_protocol", "pathname": "src/socket_protocol/__init__.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 768.2993412017822, + "relativeCreated": 782.5825214385986, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -31518,8 +31578,8 @@ "None", "" ], - "asctime": "2020-01-29 07:23:19,692", - "created": 1580278999.6924398, + "asctime": "2020-12-21 22:33:01,870", + "created": 1608586381.8704743, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -31529,15 +31589,15 @@ "lineno": 22, "message": "Result (Return Value (response instance) for struct_json_protocol.receive with data data_id 0xaffe): None ()", "module": "test", - "msecs": 692.4397945404053, + "msecs": 870.4743385314941, "msg": "Result (%s): %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 768.4895992279053, + "relativeCreated": 782.7813625335693, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" }, { @@ -31546,8 +31606,8 @@ "None", "" ], - "asctime": "2020-01-29 07:23:19,692", - "created": 1580278999.6925561, + "asctime": "2020-12-21 22:33:01,870", + "created": 1608586381.8705745, "exc_info": null, "exc_text": null, "filename": "test.py", @@ -31557,40 +31617,40 @@ "lineno": 26, "message": "Expectation (Return Value (response instance) for struct_json_protocol.receive with data data_id 0xaffe): result = None ()", "module": "test", - "msecs": 692.5561428070068, + "msecs": 870.5744743347168, "msg": "Expectation (%s): result = %s (%s)", "name": "__unittest__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 768.6059474945068, + "relativeCreated": 782.881498336792, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread" } ], - "msecs": 692.652702331543, + "msecs": 870.6521987915039, "msg": "Return Value (response instance) for struct_json_protocol.receive with data data_id 0xaffe is correct (Content %s and Type is %s).", "name": "__tLogger__", "pathname": "src/unittest/test.py", - "process": 7175, + "process": 115467, "processName": "MainProcess", - "relativeCreated": 768.702507019043, + "relativeCreated": 782.9592227935791, "stack_info": null, - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread", - "time_consumption": 9.655952453613281e-05 + "time_consumption": 7.772445678710938e-05 } ], - "thread": 139631656539968, + "thread": 139622186977088, "threadName": "MainThread", - "time_consumption": 0.707003116607666, - "time_finished": "2020-01-29 07:23:19,692", - "time_start": "2020-01-29 07:23:18,985" + "time_consumption": 0.708648681640625, + "time_finished": "2020-12-21 22:33:01,870", + "time_start": "2020-12-21 22:33:01,162" } }, "testrun_id": "p3", - "time_consumption": 11.334765911102295, + "time_consumption": 11.33228349685669, "uid_list_sorted": [ "socket_protocol.struct_json_protocol: Send and receive check.", "socket_protocol.pure_json_protocol: Send and receive check.", diff --git a/_testresults_/unittest.pdf b/_testresults_/unittest.pdf index b1f9591..253f758 100644 Binary files a/_testresults_/unittest.pdf and b/_testresults_/unittest.pdf differ